* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background-color: rgb(244, 244, 248);
    color: black;
    width: 100%;
    top: 0;
    z-index: 100;
    position: fixed;
  }
  .logo img {
    height: 120px;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links a,
  .mobile-menu a {
    color: rgb(11, 11, 11);
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #006aff;
    transition: width 0.3s ease-in-out;
}



.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}
.contact-btn {
    background-color: #ff6600;
    padding: 10px 15px;
    border-radius: 5px;
}
.contact-btn:hover {
    background-color: #e65c00;
}
  
  /* Dropdown menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(244, 244, 248);
    color: #0f0f0f;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    min-width: 200px;
  }
  .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  /* Mobile Styles */
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  /* Base dropdown (desktop) */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 230%;
    display: none;
    z-index: 1000;
    padding: 10px 0;
  }
  .dropdown-menu a:hover {
    background-color: #e6f0ff;
    color: #0056b3;
}
  /* Show dropdown when open */
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  /* MOBILE STYLES ONLY */
  @media (max-width: 934px) {
    .mobile-menu {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      z-index: 999;
      max-height: 100vh;
      overflow-y: auto;
    }
  
    .mobile-menu .dropdown {
      position: static;
    }
  
    .mobile-menu .dropdown-menu {
      position: static !important;
      display: none;
      padding-left: 20px;
    }

  .dropdown-menu li{
    background-color: rgb(244, 244, 248);
    color: #0f0f0f;
  }
    .mobile-menu .dropdown.open .dropdown-menu {
      display: block;
    }
  
    .mobile-menu ul {
      padding-left: 0;
    }
    .mobile-menu .contact-btn {
        display: inline-block;
        background-color: #ff6600;
        color: white;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        width: calc(100% - 200px); 
        max-width: 250px;
      }
      
    .mobile-menu li {
      list-style: none;
      padding: 10px 20px;
    }
  
    .mobile-menu a {
      color: #0f0f0f;
      text-decoration: none;
      display: block;
    }
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: rgb(244, 244, 248);
    color: #0f0f0f;
    z-index: 999;
    max-height: 100vh;
    overflow-y: auto;
    
    transition: all 0.3s ease;
  }
  
  /* Show menu when active */
  .mobile-menu.active {
    display: block;
  }
  #menu-icon {
    font-size: 32px; /* Increase size */
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
  }
  
  
  .mobile-menu ul {
    list-style: none;
  }
  .mobile-menu li {
    padding: 10px 0;
    padding-left: 20px;
    border-bottom: 1px solid #ccc; /* light gray border line */
  }
  .mobile-menu li:hover {
    border-bottom: 1px solid #4a90e2;
    color: #4a90e2;
    background-color: #f9f9f9;
  }
  
  
  .mobile-menu .dropdown-menu {
    display: none;
    padding-left: 20px;
    background-color: #222;
  }
  .mobile-menu .dropdown.open .dropdown-menu {
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 934px) {
    .nav-links {
      display: none;
    }
    .menu-icon {
      display: block;
    }
    .mobile-menu.active {
      display: block;
    }
  }
  
  .banner {
    position: relative;
    height: 100vh;
    background: url('assets/bannersocialflyimg2.jpg') no-repeat;
    background-size: cover;
    background-position: center top -50px; /* Moves image 50px higher */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
  }
  

/* Dark Overlay */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 1;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFA500;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cc5200;
}

/* Floating Trust Container */
.trust-container {
    position: absolute;
     list-style: none;
    bottom: 30px;
    display: flex;
    gap: 20px;
    z-index: 2;
    animation: floatUpDown 3s infinite ease-in-out alternate;
}


/* Floating Effect for Trust Box */
@keyframes floatUpDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

/* Trust Box Styling */
.trust-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-out forwards;
}


.trust-box:nth-child(1) { animation-delay: 0.5s; }
.trust-box:nth-child(2) { animation-delay: 0.7s; }
.trust-box:nth-child(3) { animation-delay: 0.9s; }

/* Responsive */
@media (max-width: 768px) {
    .banner {
        padding: 20px;
        height: auto;
        min-height: 100vh;
        background-position: center center;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .trust-container {
        flex-direction: column;
        bottom: 20px;
        gap: 10px;
        align-items: center;
    }
}


/* Services Section */
.services {
    padding: 60px 20px;
    background: #f4f4f4;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Services Container - 4 Columns */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Service Box */
.service-box {
    width: 280px;
    height: 380px;
    perspective: 1000px;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Inner Box (For Flip Effect) */
.service-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s ease-in-out;
}

/* Front & Back Faces */
.service-front, .service-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Front Side */
.service-front {
    background: #fff;
    padding: 25px;
}

/* Service Image */
.service-front img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Service Heading */
.service-front h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Service Description */
.service-front p {
    font-size: 14px;
    color: #555;
}

/* Back Side */
.service-back {
    background: #001c40;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
}

.service-back p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: left;
}

/* Learn More Button */
.learn-more-btn {
    background: rgb(221, 221, 235);
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.learn-more-btn:hover {
    background: rgb(122, 122, 123);
    color: white;
}

/* Flip Button (Arrow) - Positioned to Left */
.flip-btn {
    background: #efeeee;
    color: rgb(54, 58, 101);
    border: none;
    padding: 5px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    
    position: absolute;  /* Position inside the container */
    bottom: 25px;        /* Positioned near the bottom */
    left: 15px;          /* Aligned to the left */
}

.flip-btn:hover {
    background: #cc5200;
}


/* Hover Flip Effect */
.service-box:hover .service-inner,
.service-box .flipped {
    transform: rotateY(180deg);
}


/* Hover Effect (Flip the Box) */
.service-box:hover .service-inner {
    transform: rotateY(180deg);
}

/* Custom Scroll Animation - Hidden State */
.service-box {
    opacity: 0;
    transition: all 1s ease-in-out;
}

/* Custom Entry Animations */
.animate-left {
    transform: translateX(-50px);
}

.animate-top {
    transform: translateY(-50px);
}

.animate-bottom {
    transform: translateY(50px);
}

.animate-right {
    transform: translateX(50px);
}

/* Show Animation */
.service-box.show {
    opacity: 1;
    transform: translateY(0);
}
/* About Us Section */
.about-us {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
  }

  /* Background Overlay */
  .about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001f54;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    z-index: 0;
  }

  /* Shapes */
  .shapes {
    position: absolute;
    z-index: 0;
  }

  .shape-blob {
    width: 150px;
    height: 750px;
    background: #faf8f7;
    border-radius: 50% 40% 30% 60% / 60% 30% 40% 50%;
    opacity: 0.15;
    top: -50%;
    left: -80px;
  }

  .shape-circle {
    width: 650px;
    height: 650px;
    background: #a09865;
    border-radius: 50%;
    opacity: 0.1;
    bottom: 10%;
    right: -150px;
  }

  /* About Container */
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }

  .about-container.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Left - Image */
  .about-image {
    flex: 1;
    text-align: center;
    opacity: 0;
    animation: slideInLeft 1s ease-in-out forwards;
  }

  .about-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Right - Content */
  .about-content {
    flex: 1;
    padding: 20px;
    max-width: 600px;
    opacity: 0;
    animation: slideInRight 1s ease-in-out forwards;
  }

  .about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffdc00;
  }

  .about-content h3 {
    color: #efeeee;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 1.1rem;
    color: rgb(209, 205, 205);
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Button */
  .learn-more {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }

  .learn-more:hover {
    background: #cc5200;
  }

  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
  }

  @keyframes blobMove {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(30px, -20px) scale(1.05);
    }
    50% {
      transform: translate(50px, 10px) scale(0.95);
    }
    75% {
      transform: translate(20px, 20px) scale(1.1);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: left;
    }

    .about-image {
      animation: slideInBottom 1s ease-in-out forwards;
    }

    .shape-circle {
        width: 250px;
        height: 450px;
        background: #a09865;
        border-radius: 50%;
        opacity: 0.1;
        bottom: 10%;
        right: -150px;
      }

    @keyframes slideInBottom {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
  }

/* Section Styling with Background Image */
.who-we-are {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: url('assets/bgimg3.jpg') no-repeat center center/cover;
    color: #fff;
}

/* Overlay for Better Text Visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

/* Ensure Content Stays Above Overlay */
.container {
    position: relative;
    z-index: 1;
}

/* Section Title & Subtitle */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-in-out;
    color: rgb(81, 81, 215);
}

.section-subtitle {
    font-size:2rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-in-out 0.2s;
    color: blue;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Service Box Styling */
.servicebox {
    background: rgba(255, 255, 255, 0.9); /* Light Background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    color: #333;
}

/* Hover Effect */
.servicebox:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.servicebox img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.servicebox:hover img {
    transform: scale(1.05);
}

/* Heading & Paragraph */
.servicebox h3 {
    margin: 15px 0;
    font-size: 1.5rem;
}

.servicebox p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Learn More Link */
.learnmore {
    color: #150b04;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.learnmore:hover {
    color: #0f0f0f;
}

/* View All Button */
.view-all {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6600;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #cc5200;
}

/* Scroll Animation */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .who-we-are {
        text-align: center; /* Center align content for smaller screens */
        padding: 50px 20px;
    }
}

/* CSS for Client Reviews Carousel */
.client-reviews {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.review-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
}

.review {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
}

.review img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Smooth Scrolling Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.review-container:hover .review-track {
    animation-play-state: paused;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .review {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .review {
        width: 100px;
        height: 100px;
    }
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
}
.contact-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    height: 500px; /* Adjusts based on content */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Ensures responsiveness */
}

/* Left Side - Contact Form */
.contact-form {
    flex: 1;
    padding: 40px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-in-out;
}
.contact-form.show {
    opacity: 1;
    transform: translateX(0);
}
.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.form-group {
    position: relative;
    margin-bottom: 15px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}
.form-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}
.form-group textarea {
    height: 100px;
    resize: none;
}
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #0056b3;
}
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #f7f7ff, #e4e3fa); /* soft violet gradient */
    padding: 40px;
    color: #2c2c2c;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
  }
  
  .contact-info.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .contact-info h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #4b0082;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .info-item i {
    font-size: 30px;
    color: #673ab7;
  }
  
  /* 🌟 Decorative Background Shapes */
  .contact-info::before,
  .contact-info::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  
  .contact-info::before {
    width: 200px;
    height: 200px;
    background: #c4b5fd;
    top: -50px;
    right: -50px;
    opacity: 0.3;
  }
  
  .contact-info::after {
    width: 150px;
    height: 150px;
    background: #b388ff;
    bottom: -60px;
    left: -40px;
    opacity: 0.2;
  }
  
  /* Place content above background shapes */
  .contact-info > * {
    position: relative;
    z-index: 1;
  }
  
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.info-item i {
    font-size: 30px;
    color: #007bff;
}

/* 🔹 Improved Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        width: 95%;
        height: auto;
    }
    .contact-form, .contact-info {
        flex: none;
        width: 100%;
        min-height: auto;
    }
    .contact-form {
        order: 2; /* Moves form below */
        padding: 30px;
    }
    .contact-info {
        order: 1; /* Moves contact info above */
        text-align: center;
        align-items: center;
        padding: 30px;
    }
    .contact-info h2 {
        font-size: 32px;
    }
    .info-item {
        justify-content: center;
    }
}

/* 📱 Mobile-Specific Styling */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }
    .contact-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .contact-form, .contact-info {
        width: 100%;
        padding: 25px;
    }
    .contact-info {
        align-items: center;
        text-align: center;
    }
    .contact-info h2 {
        font-size: 28px;
    }
    .info-item {
        gap: 15px;
        font-size: 14px;
    }
    .info-item i {
        font-size: 22px;
    }
    .contact-form h2 {
        font-size: 22px;
    }
    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .contact-form h2, .contact-info h2 {
        font-size: 24px;
    }
    .form-group input, .form-group textarea {
        padding: 10px 35px;
    }
    .form-group i {
        font-size: 16px;
    }
    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }
}


/* Footer Styling */
.footer {
    background: linear-gradient(to right, #E6E6FA, #ADD8E6);
    color: rgb(13, 13, 13);
    padding: 50px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.logo-container {
    flex: 0.5;
}

.footer-logo {
    width: 120px;
    height: 150px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    width: max-content;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.footer p i {
    margin-right: 8px;
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    color: black;
    font-size: 25px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 45%;
        min-width: 250px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

.review-description {
  font-size: 1rem;
  color: #444;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 1100px;
}
