     /* General responsive fix */
.img-cover {
    width: 100%;
    height: auto;   /* Keeps proportion */
    object-fit: cover;
}
.footer-top {
    background: #1C1C1C;
    background-size: cover;
    background-position: center;
     padding: 0px 0 0px !important; 
}
.widget_getintuch i {
    position: absolute;
    left: 0;
    top: 12px !important;
    text-align: center;
    font-size: 22px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.bg-primary {
    background-color: #019ee2 !important;
}

/* For equal height sections on large screens */
@media (min-width: 992px) {
    .equal-height {
        min-height: 500px; /* applies only on desktop */
        display: flex;
        align-items: center;
    }
}

.p-lr20 {
    padding-left: 36px !important;
    padding-right: 20px;
}
.resp-padding {
    padding-left: 28px;  /* default for all */
    padding-top: 20px;   /* default for all */
    padding-right: 10px;
    padding-bottom: 28px;
}

.widget_getintuch li {
    margin-bottom: 0px !important;
    padding-top: 9px !important;
    position: relative;
    padding-left: 40px;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .resp-padding {
        padding-left: 22px;  /* only for tablet screens */
        padding-top: 47px;   /* only for tablet screens */
        padding-bottom: 16px;
        padding-right: 10px;
    }
}

/* For small screens */
@media (max-width: 991px) {
    .equal-height {
        min-height: auto;
        padding: 0px;
    }
}   
        
        .link-black {
          color: black;              /* default color */
          text-decoration: none;     /* remove underline */
          transition: color 0.3s ease;
        }
        
        .link-black:hover {
          color: black !important;   /* keep black on hover */
        }
        .gallery-container {
            max-width: 1200px;
            width: 100%;
        }

        .gallery-title {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            /*border-radius: 15px;*/
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            height: 400px;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .hover-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, #019ee2, #019ee26b);
            color: white;
            padding: 30px 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease-out;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .gallery-item:hover .hover-overlay {
            transform: translateY(0);
        }

        .image-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
        }

        .image-description {
            font-size: 0.9rem;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.2s;
            line-height: 1.5;
        }
    
           .read-more-btn {
                background: none;
                color: white;
                padding: 0;
                border: none;
                border-radius: 0;
                font-weight: 400;
                cursor: pointer;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.4s ease 0.3s;
                text-decoration: none;
                display: inline-block;
                text-align: left;
                width: fit-content;
                border-bottom: 1.5px solid transparent;
        }
         .read-more-btn:hover {
            border-bottom: 1.5px solid white;
            transform: translateY(0);
        }
        .gallery-item:hover .image-title,
        .gallery-item:hover .image-description,
        .gallery-item:hover .read-more-btn {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }
            
            .gallery-title {
                font-size: 2rem;
            }
            
            .image-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .gallery-title {
                font-size: 1.8rem;
            }
        }
        
        
        .slider-container {
            overflow: hidden;
            position: relative;
            height: 500px;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /*padding: 1rem;*/
        }

        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slide-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 15px;
        }

        .next-btn {
            right: 15px;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .image-column, .slider-column {
                width: 100%;
            }
        }
        
        
        .image-container {
      flex: 0 0 643px;
      height: 500px;
      overflow: hidden;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
    }

    .image-container:hover img {
      transform: scale(1.02);
    }

    /* Right slider */
    .slider-container {
      flex: 1;
      padding: 13px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .slider-wrapper {
      overflow: hidden;
      width: 100%;
    }

    .slider {
      display: flex;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      width: 100%;
    }

    .slide {
      min-width: 100%;
      padding-right: 20px;
    }

    .slide-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 20px;
    }

    .points-list {
      list-style: none;
    }

    .point-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      padding: 12px;
      background: #f7fafc;
      border-radius: 12px;
      border-left: 4px solid #3b82f6;
      transition: all 0.3s ease;
    }

    .point-item:hover {
      background: #e6f7ff;
      transform: translateX(5px);
    }

    .point-icon {
      margin-right: 12px;
      width: 24px;
      height: 24px;
      background: #3b82f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      font-weight: bold;
      font-size: 14px;
      line-height: 1;
      user-select: none;
    }

    .point-icon::before {
      content: '✓';
    }

    .point-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #4a5568;
    }

    .nav-buttons {
      display: flex;
      gap: 12px;
      margin-top: 30px;
      justify-content: center;
    }

    .nav-btn {
      width: 50px;
      height: 50px;
      border: 2px solid #e2e8f0;
      border-radius: 50%;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      user-select: none;
    }

    .nav-btn:hover {
      background: #3b82f6;
      border-color: #3b82f6;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
      color: white;
    }

    .nav-btn.prev::before {
      content: '←';
      font-size: 18px;
      font-weight: bold;
      color: #64748b;
    }

    .nav-btn.next::before {
      content: '→';
      font-size: 18px;
      font-weight: bold;
      color: #64748b;
    }

    .nav-btn:hover.prev::before,
    .nav-btn:hover.next::before {
      color: white;
    }

    .slide-indicators {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #cbd5e0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: #3b82f6;
      transform: scale(1.3);
    }

    /* Responsive */
    @media (max-width: 968px) {
      .container {
        flex-direction: column;
        max-width: 600px;
      }

      .image-container {
        flex: none;
        width: 100%;
        height: 400px;
      }

      .slider-container {
        padding: 30px 20px;
      }
    }

    @media (max-width: 640px) {
      .image-container {
        height: 300px;
      }

      .slider-container {
        padding: 20px 15px;
      }

      .slide-content h3 {
        font-size: 1.25rem;
      }

      .nav-btn {
        width: 45px;
        height: 45px;
      }
    }