* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin: 0 auto;

}
/* Əsas düymə tərzi */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  /* Orta və böyük ekranlar üçün */
  @media (min-width: 768px) {
    .btn-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  
  /* Kiçik ekranlar üçün */
  @media (max-width: 767px) {
    .btn {
      display: block;
      width: 90%;  /* Ekranın 90%-ni əhatə edir */
      max-width: 300px;
      margin: 10px auto;
      text-align: center;
    }
  }
  
/* Navbar */
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

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

.btn {
    background:  #3498db;
    padding: 8px 15px;
    border-radius: 5px;
    color: white !important;
    font-weight: bold;
}

.btn:hover {
    background:  #3498db;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
}

/* Hero Area */
.hero {
    width: 100%;
    height: 100vh;

    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    padding-top: 50px;
    position: relative;
    z-index: 2;
    width: 70%;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero h1 span {
    color:  #3498db;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background:  #3498db;
    color: white;
}

.btn-primary:hover {
    background:  #3498db;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #333;
}

/* Kartlar Ümumi Stili */
.info-card {
    width: 100%;
    max-width: 350px;
    background: linear-gradient(to bottom, #eef0f1, #c2d9ef);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 40px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    font-size: 16px;
    margin: 10px 0;
    color: #555;
}

.info-card .bold {
    font-weight: bold;
}

.info-card .highlight {
    color:  #3498db;
    font-weight: bold;
}

/* Kartlar Arasında Genişlik və Düzülüş */
.important_info {
    width: 100%;
    background: #fff;
}

.important_info h1 {
    margin-top: 40px;
    text-align: center;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0px;
    
   
}

/* Responsive dizayn */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }



    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        border-radius: 15px;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .con_info_area {
        flex-direction: column;
    }
}

.con_info_area {
    padding: 20px;
    justify-content: space-around;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
}

.info-section {
    width: 100%;
    margin-bottom: 40px;
}

.info-section .conference_poster {
    width: 40%;
    height: 600px;
    
}

.info-section .conference_poster img {
    width: 100%;
    height: 100%;
    
    
}

.info-text {
    width: 50%;
    padding-left: 20px;
}

.info-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.btn {
    background:  #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background:  #3498db;
}

/* Neon border animasiyası */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 10px  #a1e6fb, 0 0 20px #f3f6f7, 0 0 30px #a1e6fb, 0 0 40px  #f3f6f7;
    }
    50% {
        box-shadow: 0 0 20px #a1e6fb, 0 0 30px #f3f6f7, 0 0 40px #a1e6fb, 0 0 50px  #f3f6f7;
    }
    100% {
        box-shadow: 0 0 10px #a1e6fb, 0 0 20px #f3f6f7, 0 0 30px #a1e6fb, 0 0 40px #f3f6f7;
    }
}


.content-wrapper {
    margin-top: 100px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 150px;
}

.gallery-card {
    width: calc(33% - 20px); /* 3 sütunlu görünüm */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px;
    animation: neon-border 3s ease-in-out infinite;
    border: 2px solid #a1e6fb; 
    transition: transform 0.3s;
}


.gallery-card:hover{
    transform: translateY(-5px);
}


.gallery-card .gallery-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-info {
    margin-top: 10px;
    text-align: center;
}

.gallery-head h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.gallery-date p {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.gallery-images {
    margin-top: 15px;
}

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

.gallery-thumbnail img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gallery-card {
        width: calc(50% - 20px); /* 2 sütunlu görünüm */
    }

    .gallery-head h2 {
        font-size: 16px; /* Orta boy ekranlarda başlık boyutunu küçültüyoruz */
    }

    .gallery-date p {
        font-size: 13px; /* Orta boy ekranlarda tarih boyutunu küçültüyoruz */
    }
}


@media (min-width: 1020px) and (max-width: 1200px){
    .nav-links{
        gap: 25px;
    }

    .nav-links li {
        margin: 0px;
    }
    .nav-links a {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .gallery-card {
        width: 100%; /* 1 sütunlu görünüm */
    }

    .gallery-head h2 {
        font-size: 14px; /* Küçük ekranlarda başlık boyutunu daha da küçültüyoruz */
    }

    .gallery-date p {
        font-size: 12px; /* Küçük ekranlarda tarih boyutunu daha da küçültüyoruz */
    }

    .gallery-info {
        padding: 10px; /* Küçük ekranlarda metin kutusu içerisine boşluk ekliyoruz */
    }
}

@media (max-width: 480px) {
    .gallery-head h2 {
        font-size: 12px; /* Çok küçük ekranlarda başlık boyutunu küçültüyoruz */
    }

    .gallery-date p {
        font-size: 10px; /* Çok küçük ekranlarda tarih boyutunu küçültüyoruz */
    }

    .gallery-info {
        padding: 8px; /* Çok küçük ekranlarda metin kutusunu daraltıyoruz */
    }

    .gallery-card {
        padding: 10px; /* Çok küçük ekranlarda card padding'ini küçültüyoruz */
    }

    .gallery-thumbnail img {
        width: 100%;
        height: auto;
    }
}

.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination .step-links {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.pagination .step-links a {
    margin: 0 5px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pagination .step-links a:hover {
    background-color: #0056b3;
}

.pagination .current {
    margin: 0 10px;
    font-weight: bold;
    color: #333;
}

  /* Konfrans İstiqamətləri */
  .directions-section {
      width: 100%;
      background-color: #ffffff;
      padding: 100px 0;
  }
  
  .directions-section h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
  }
  
  .directions-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 20px;
      margin-top: 30px;
  }
  
  .direction-card {
      width: 100%;
      max-width: 350px;
      
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      min-height: 100px;
  
      /* Neon border effekti */
      animation: neon-border 3s ease-in-out infinite;
      border: 2px solid #a1e6fb; 
      transition: transform 0.3s;
  }
  
  .direction-card:hover {
      transform: translateY(-5px);
  }
  
  .direction-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #333;
  }
  
  .direction-card ul {
      list-style-type: none;
      padding: 0;
      text-align: left;
      margin-top: 10px;
  }
  
  .direction-card ul li {
      font-size: 16px;
      margin-bottom: 5px;
      display: flex;
      align-items: center;
  }
  
  .direction-card ul li i {
      margin-right: 10px;
      color: #3498db;
  }
  
  /* Responsive dizayn */
  @media (max-width: 768px) {
      .directions-container {
          flex-direction: column;
          align-items: center;
      }
  
      .direction-card {
          width: 100%;
          margin: 10px 0;
          min-height: 50px;
      }
  
      .directions-section h1 {
          font-size: 24px;
      }
  
      .direction-card h3 {
          font-size: 18px;
      }
  }
  
/* Konfrans Komitələri Bölməsi */
.committees-section {
    margin-top: 100px;

}

.committees-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

/* Həmsədrlər Kartları */
.co-chair-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.co-chair-card {
    background: linear-gradient(to bottom, #eef0f1, #c2d9ef);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.co-chair-card:hover {
    transform: translateY(-5px);
}

.co-chair-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.co-chair-card h3 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.co-chair-card p {
    font-size: 16px;
    color: #777;
}

/* Komitə Üyələri */
.committee {
    margin-bottom: 40px;
}

.committee h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.committee-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


    .committee-list {
        flex-direction: column;
        gap: 15px;
    }

    


/* Konfransın Məqsədi Bölməsi */
.conference-goals {
    margin-top: 60px;
    padding: 40px 0;

}

.info-container {
    padding: 30px !important;
    background: linear-gradient(to bottom, #eef0f1, #c2d9ef);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.conference-goals h1 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.conference-goals p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Konfransın Tələbləri */
.conference-requirements{
    padding: 30px !important;
    background: linear-gradient(to bottom, #eef0f1, #c2d9ef);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom:100px;
}

.conference-requirements h1 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.conference-requirements ul {
    list-style-type: none;
    padding: 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.requirement-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-left: 15px;
}

.requirement-item i {
    font-size: 20px;
    color: #007bff;
}

/* Responsiv Dizayn */
@media (max-width: 768px) {
    .conference-goals h1 {
        font-size: 28px;
    }

    .conference-requirements h1 {
        font-size: 28px;
    }

    .requirement-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.form-group {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #82c3eb;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 100px;
    
}

.file-input {
    display: flex;
    
    gap: 10px;
}

.file-input input[type="file"] {
    flex: 1;
    
}

.file-input i {
    font-size: 20px;
    color: #3498db;
   
}

.btn-submit,
.btn-example-upload,
.btn-download {
    background-color: #3498db;
    color: white;
    padding: 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    width: 130px;
    margin-top: 10px;
    text-decoration: none;
}

.btn-submit:hover,
.btn-example-upload:hover,
.btn-download:hover {
    background-color:  #3498db;
}

/* Responsive styles */
@media (max-width: 768px) {
    .form-group {
        width: 100%;
    }

    .file-input {
        flex-direction: column;
    }

    .con_info_area {

        padding: 20px 5px !important;
    }

    p {
        font-size: 14px !important;
    }

    h2 {
        font-size: 20px !important;
    }
}
.important_info {
    padding: 40px 0;

}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h3 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-card i {
    margin-right: 10px;
    font-size: 22px;
    color: #3498db;
}

.bold {
    font-weight: bold;
}

.highlight {
    color: #3ce4e7;
    font-weight: bold;
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

.naxcivan-section {
    padding: 60px 20px;
    
  }
  
  .nax-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d2d2d;
  }
  
  .nax-description {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
  }
  
  .nax-video-container {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Kartlar konteyneri */
  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Kart */
  .place-card {
    perspective: 1000px;
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .place-card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backface-visibility: hidden;
  }
  
  .card-front {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .card-front img {
    width: 100%;
    height: 70%;
    object-fit: cover;
  }
  
  .card-front h4 {
    font-size: 20px;
    margin: 10px 0;
    text-align: center;
    color: #222;
  }
  
  .card-back {
    background-color: #0077b6;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
  }
  


  .contact-form {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-top: 50px;
    color: rgb(10, 10, 10);
    animation: neonGlow 3s ease-in-out infinite alternate;
}

/* Neon animasiyası */
@keyframes neonGlow {
    0% {
        box-shadow: 0 0 10px  #a1e6fb, 0 0 20px #f3f6f7, 0 0 30px #a1e6fb, 0 0 40px  #f3f6f7;
    }
    50% {
        box-shadow: 0 0 20px #a1e6fb, 0 0 30px #f3f6f7, 0 0 40px #a1e6fb, 0 0 50px  #f3f6f7;
    }
    100% {
        box-shadow: 0 0 10px #a1e6fb, 0 0 20px #f3f6f7, 0 0 30px #a1e6fb, 0 0 40px #f3f6f7;
    }
}



.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #82c3eb; /* Qalın və tünd rəngli sərhəd */
    border-radius: 5px;
    font-size: 16px;
    outline: none;
   
}


.btn-send {
    background: #17bef1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-send:hover {
    background: #94e9f5;
}





/* Footer */
.footer {
    background-color: #333;
    color: white;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    
}

.footer .footer-links {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.footer .footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer .footer-links a:hover {
    color:  #3498db;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

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

@media (max-width: 768px) {

    /* Navbar Adjustments */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    /* Cards and Info Sections */
    .card-container,
    .directions-container {
        flex-direction: column;
        align-items: center;
    }

    .info-card,
    .direction-card {
        width: 90%;
        margin: 10px 0;
    }

    .committees-section h1 {
        font-size: 20px;
    }

    /* Conference Info Section */
    .info-section {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    .directions-section {
        height: 100%;
    }

    .info-text {
        width: 100%;
        padding: 10px;
    }

    .info-section .conference_poster {
        width: 100%;
        height: auto;
    }

    /* Contact Section */
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }

}

.submission {
    padding: 150px 10px;
}
/* Ümumi konteyner */
.submission_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    /* Neon border effekti */
    animation: neon-border 3s ease-in-out infinite;
    border: 2px solid #a1e6fb; 
    box-shadow: 0 0 5px #a1e6fb, 0 0 10px #a1e6fb, 0 0 20px #a1e6fb;

    transition: transform 0.3s;
}

/* Başlıq */
.submission_container h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    
}
.sample-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sample-buttons a {
    width: 100%;
    max-width: 300px;
}

/* Form sahələri */
.form-group {
    margin-bottom: 20px;
}

/* Input və textarea */
.form-control,
.form-control-file {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 2px solid #82c3eb;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* Error mesajları */
.text-danger small {
    display: block;
    margin-top: 5px;
}

/* Button */
.btn-primary {
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Nümunə linkləri */
.file-input .btn-secondary {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.file-input .btn-secondary:hover {
    background-color: #6c757d;
}

/* Alert mesajlar */
.alert {
    border-radius: 10px;
    padding: 10px 15px;
}

/* Mobil uyğunlaşdırma */
@media (max-width: 576px) {
    .submission_container {
        padding: 20px 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

.submission_container {
   
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }

    .qonaqlama-section {
        height: 100% !important;
    }
    
    .container {
        padding: 10px 20px;
    }

    .contact-container {
        padding: 20px;
    }

    .hero p {
        font-size: 12px;
        padding: 0 15px;
    }

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

    .info-card,
    .direction-card {
        width: 95%;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .hero {
        height: 50vh;
    }

    h3 {
        font-size: 18px !important;
    }

    .hero-content {
        width: 80%;
    }
}

/* Qonaqlama Bölümü */
.qonaqlama-section {
    
    padding-top: 100px;
    margin-bottom: 100px;
  
    text-align: center;
    border-radius: 20px;
    
}

.qonaqlama-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

/* Otel Kartları */
.hotels-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hotel-card {
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-info {
    padding: 15px;
    text-align: left;
}

.hotel-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.hotel-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color:  #3498db;
}

/* Mobil Uyğunluq */
@media (max-width: 768px) {
    .hotels-container {
        flex-direction: column;
        align-items: center;
    }
}
