/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles (unchanged from your original) */
.wrapper {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.pt20 { padding-top: 20px; }
.pb20 { padding-bottom: 20px; }
.row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.column { padding: 10px; }
.large-3 { flex: 0 0 25%; max-width: 25%; }
.large-9 { flex: 0 0 75%; max-width: 75%; }
.logo img { max-height: 60px; width: auto; height: auto; }
.darklogo { display: block; }
.lightlogo { display: none; }
.menu ul.list { list-style: none; display: flex; justify-content: flex-end; flex-wrap: wrap; padding: 0; margin: 0; gap: 15px; }
.menu ul.list li { position: relative; }
.menu ul.list li a { text-decoration: none; font-size: 16px; text-transform: uppercase; color: #333; font-weight: 500; padding-bottom: 5px; position: relative; transition: color 0.3s ease; white-space: nowrap; }
.menu ul.list li a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 2px; background: goldenrod; transition: width 0.3s ease; }
.menu ul.list li a:hover { color: #ad890c; }
.menu ul.list li a:hover::after { width: 100%; }
.menutoggle { display: none; width: 30px; height: 25px; position: relative; cursor: pointer; background: transparent; border: none; padding: 0; z-index: 1001; }
.menutoggle .line { position: absolute; height: 3px; width: 100%; background-color: #333; left: 0; transition: all 0.3s ease; }
.menutoggle .line:first-child { top: 0; }
.menutoggle .line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menutoggle .line:last-child { bottom: 0; }
.menutoggle.active .line:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menutoggle.active .line:nth-child(2) { opacity: 0; }
.menutoggle.active .line:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Responsive Header Styles (unchanged) */
@media (max-width: 992px) {
    .menu ul.list { gap: 10px; }
    .menu ul.list li a { font-size: 14px; }
}
@media (max-width: 768px) {
    .large-3, .large-9 { flex: 0 0 100%; max-width: 100%; }
    .large-3 { display: flex; justify-content: space-between; align-items: center; }
    .js-menu-container { position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px; height: 100vh; background-color: #fff; box-shadow: 2px 0 10px rgba(0,0,0,0.1); padding: 80px 20px 20px; transition: left 0.3s ease-in-out; z-index: 1000; }
    .js-menu-container.active { left: 0; }
    .menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
    .menu-overlay.active { opacity: 1; visibility: visible; }
    .menutoggle { display: block; order: 1; }
    .menu ul.list { flex-direction: column; align-items: flex-start; gap: 15px; }
    .menu ul.list li { margin: 0; width: 100%; }
    .menu ul.list li a { display: block; padding: 12px 0; font-size: 16px; }
}
@media (max-width: 480px) {
    .logo img { max-height: 50px; }
    .menu ul.list li a { font-size: 15px; }
    .js-menu-container { width: 85%; }
}

/* Enhanced Slider Styles with Better Responsiveness */
.first-screen-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.slide-title-block {
    max-width: 1200px;
    width: 100%;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
    padding: 0 20px;
}

.slide-title-block h3 {
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slide-title-block p {
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font size */
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    font-size: clamp(0.8rem, 1.5vw, 1rem); /* Responsive font size */
}

/* Active slide animations */
.owl-item.active .slide-title-block {
    transform: translateY(0);
    opacity: 1;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-prev, .owl-next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 20px;
}

.owl-prev:hover, .owl-next:hover {
    background: rgba(255,255,255,0.5) !important;
}

/* Owl Carousel Dots */
.owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;  
    border-radius: 50%;
    transition: all 0.3s ease;
}



/* Responsive Adjustments */
@media (max-width: 1200px) {
    .first-screen-section,
    .slide {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .slide-title-block {
        padding: 0 40px;
    }
    
    .button {
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .first-screen-section,
    .slide {
        min-height: 400px;
    }
    
    .slide-title-block h3 {
        margin-bottom: 15px;
    }
    
    .slide-title-block p {
        margin-bottom: 20px;
    }
    
    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .first-screen-section,
    .slide {
        min-height: 300px;
        height: 70vh;
    }
    
    .slide-title-block {
        padding: 0 20px;
    }
    
    .slide-title-block h3 {
        letter-spacing: 1px;
    }
    
    .owl-dots {
        bottom: 20px;
    }
    
    .owl-dot {
        width: 10px;
        height: 10px;
    }
    
    .owl-nav {
        display: none; /* Hide arrows on very small screens */
    }
}

@media (max-width: 400px) {
    .first-screen-section,
    .slide {
        min-height: 250px;
        height: 60vh;
    }
    
    .slide-title-block h3 {
        font-size: 1.5rem;
    }
    
    .slide-title-block p {
        font-size: 0.9rem;
    }
    
    .button {
        padding: 8px 20px;
    }
}

/* progress section */
/* Process Section Styles */
.process-section {
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
  }
  
  .step-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
  }
  
  .step h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Font Awesome for icons */
  @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .process-steps {
      flex-direction: column;
      align-items: center;
    }
    
    .step {
      width: 100%;
      max-width: 350px;
    }
  }
/* Best Offers Section */
#bestOffers {
    padding: 60px 0;
    background-color: #fff;
}

#bestOffers .title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #222;
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 4%;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.offer-card {
    display: flex;
    flex-direction: row;
    width: 48%;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 200px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-price {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.offer-content {
    flex: 1;
    padding: 20px;
}

.offer-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.offer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

#section3 {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .single-process {
        padding: 25px 15px;
    }
    
    .single-process i {
        font-size: 35px;
    }
    
    .single-process h6 {
        font-size: 18px;
    }
    
    .offer-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 40px 0;
    }
    
    .single-process {
        margin-bottom: 20px;
    }
    
    #bestOffers .title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .offer-card {
        flex-direction: column;
    }
    
    .offer-image {
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .single-process i {
        font-size: 30px;
    }
    
    .single-process h6 {
        font-size: 16px;
    }
    
    .single-process p {
        font-size: 13px;
    }
    
    #bestOffers .title {
        font-size: 20px;
    }
    
    .offer-content {
        padding: 15px;
    }
    
    .offer-content h3 {
        font-size: 16px;
    }
    
    .offer-content p {
        font-size: 13px;
    }
}
/* end section */

/* section 4 */



/* gallary */

 /* Gallery Styles */
.school-gallery-container {
    font-family: 'Poppins', sans-serif;
    max-width: 1290px;
    padding: 4rem 1rem;
    margin: 0 auto;
}

.school-gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.school-gallery-title {
    font-size: 35px;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    color: #181818;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.school-gallery-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: underline 1.5s ease-in-out forwards 0.5s;
}

@keyframes underline {
    to { width: 80%; }
}

/* Filter Buttons */
.school-gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.school-filter-btn {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.school-filter-btn:hover, .school-filter-btn.active {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Grid */
.school-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.school-gallery-item {
    position: relative;
    overflow: hidden;
    /* border-radius: 8px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.school-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.school-gallery-item:hover .school-gallery-img {
    transform: scale(1.1);
}

/* Caption with Weekend Surfing and Price */
.school-gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.8); */
    color: white;
    padding: 1.5rem 1rem;
    transition: bottom 0.3s ease;
    text-align: center;
}

.school-gallery-item:hover .school-gallery-caption {
    bottom: 0;
}

.school-gallery-caption-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.school-gallery-caption h2 {
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
}

/* Filter Functionality */
.school-gallery-item.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .school-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .school-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .school-gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}
/* emd se */


/* section 5 */

/* Hot Deals Section */
.hot-deals-section {
    background: #f0f4ff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .hot-deals-section .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .hot-deals-section .highlight {
    color: #427bff;
  }
  
  .hot-deals-section .subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
  }
  
  /* Grid Layout */
  .deals-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 65px;
  }
  
  /* Card */
  .deal-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 328px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .deal-card:hover {
    transform: translateY(-5px);
  }
  
  /* Image block */
  .deal-img {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .deal-top-text {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    text-align: right;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 6px;
    border-radius: 3px;
  }
  
  .deal-price {
    position: absolute;
    bottom: 55px;
    left: 20px;
    font-size: 22px;
    font-weight: bold;
  }
  
  .old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    display: block;
  }
  
  .new-price {
    color: #fff;
  }
  
  /* Button */
  .deal-btn {
    position: absolute;
    bottom: 15px;
    left: 20px;
    padding: 8px 16px;
    background-color: #2f5aff;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .deal-btn:hover {
    background-color: #1744dd;
  }
  
  /* Info */
  .deal-info {
    padding: 15px;
    text-align: left;
  }
  
  .deal-info p {
    font-size: 15px;
    color: #999;
    margin: 0;
  }
  
  .deal-info h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    color: #222;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .deals-row {
      gap: 20px;
    }
    .deal-card {
      max-width: 45%;
    }
  }
  
  @media (max-width: 600px) {
    .deal-card {
      max-width: 100%;
    }
  }
  

/* end section */


/* section 6 */

  
.unique-tour-offer-section {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .unique-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .unique-tour-offer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  
  /* Image */
  .unique-offer-image {
    flex: 1 1 400px;
    position: relative;
  }
  
  .unique-offer-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .unique-price-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  /* Text */
  .unique-offer-details {
    flex: 1 1 400px;
  }
  
  .unique-badge {
    background-color: #407bff;
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .unique-offer-details h3 {
    font-size: 32px;
    margin: 5px 0;
    font-weight: 400;
  }
  
  .unique-offer-details h1 {
    font-size: 45px;
    margin: 8px 0;
    font-weight: 700;
  }
  
  .unique-desc {
    color: #666;
    font-size: 27px;
    margin: 10px 0 20px;
  }
  
  /* Features */
  .unique-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .unique-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }
  
  .unique-features li {
    margin-bottom: 8px;
    color: black;
    font-size: 18px;
  }
  
  /* Button */
  #unique-btn,
  .unique-btn {
    background-color: #407bff;
    color: white;
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  #unique-btn:hover,
  .unique-btn:hover {
    background-color: #1e5de0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .unique-tour-offer {
      flex-direction: column;
      text-align: center;
    }
  
    .unique-offer-details {
      text-align: center;
    }
  
    .unique-features {
      flex-direction: column;
      align-items: center;
    }
  
    .unique-features ul {
      width: 100%;
      text-align: center;
    }
  }
  
  /* Fade-in animation */
  .unique-fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: uniqueFadeInUp 1s ease forwards;
    animation-delay: 0.3s;
  }
  
  @keyframes uniqueFadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  /* footer section */

/* Footer Styles */
.website-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-about {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background-color: #3a7bd5;
    transform: translateY(-3px);
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3a7bd5;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    color: goldenrod;
    padding-left: 5px;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 14px;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: #3a7bd5;
    width: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    padding: 20px 0;
    background-color: #222222;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #b0b0b0;
    font-size: 13px;
  }
  
  .footer-payment {
    display: flex;
    gap: 15px;
    font-size: 24px;
  }
  
  .footer-payment i {
    color: #b0b0b0;
    transition: color 0.3s ease;
  }
  
  .footer-payment i:hover {
    color: #3a7bd5;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3a7bd5;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: #2a5da5;
    transform: translateY(-5px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer-top {
      grid-template-columns: 1fr;
    }
    
    .back-to-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 20px;
    }
  }


  /* FAQ Section */
.unique-faq-section {
    background-color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  .unique-faq-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .unique-faq-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .unique-faq-heading .highlight-blue {
    color: #407bff;
  }
  
  .unique-faq-heading p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Grid */
  .unique-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .unique-faq-item h4 {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 8px;
  }
  
  .unique-faq-item p {
    text-align: left;
    font-size: 19px;
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .unique-faq-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .unique-faq-grid {
      grid-template-columns: 1fr;
    }
  
    .unique-faq-heading h2 {
      font-size: 28px;
    }
  }
  


  

  .contact-cta {
    padding: 60px 0;
    /* margin-bottom:40px; */
background-color: #2c3e50; 
   color: white;

   margin-bottom: 5px;
}


