/* Prevent horizontal overflow globally */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 80vh; 
    background: linear-gradient(135deg, #202020 0%, #3a3a3a 50%, #000 100%);
    color: white;
    overflow: hidden;
    padding-top: 140px;
    z-index: 1;
    width: 100%;
}


.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    mix-blend-mode: screen;
    z-index: 1;
}

.blob-1 {
    top: 80px;
    left: 40px;
    width: 300px;
    height: 300px;
    background: #d6b91d;
    animation: pulse 5s ease-in-out infinite;
}

.blob-2 {
    top: 200px;
    right: 40px;
    width: 320px;
    height: 320px;
    background: #bca318;
    animation: pulse 5s ease-in-out infinite 1s;
}

.blob-3 {
    bottom: 60px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: #f0d75e;
    animation: pulse 5s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Container */
.container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 60px; 
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(70vh - 140px); 
    width: 100%;
}

/* Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 100%;
}

.badge-icon {
    color: #d6b91d;
}

/* Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.hero-highlight {
    display: block;
    margin-top: 10px;
    color: #d6b91d;
}

.hero-description {
    font-size: 1.25rem;
    color: #e5e5e5;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 30px;
    width: 100%;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #f5f5f5;
    max-width: 100%;
}

.check-icon {
    color: #d6b91d;
    flex-shrink: 0;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.btn {
    position: relative;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: #d6b91d;
    color: #fff;
    border: 2px solid #d6b91d;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(214, 185, 29, 0.4);
    background: rgba(214, 185, 29, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d6b91d;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: #d6b91d;
    transition: all 0.6s ease;
    clip-path: circle(0% at 50% 100%);
    z-index: -1;
}

.btn-secondary:hover::before {
    top: 0;
    clip-path: circle(150% at 50% 50%);
}

.btn-secondary:hover {
    color: #202020;
}

/* Hero Image Section */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.image-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, #d6b91d 0%, transparent 50%);
    border-radius: 25px;
    opacity: 0.1;
    z-index: 1;
}


.achievement-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 185, 29, 0.2);
    max-width: 180px;
    box-sizing: border-box;
}

.badge-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.badge-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.achievement-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(214, 185, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #d6b91d;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.badge-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #202020;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .hero-description { font-size: 1.2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .btn { padding: 15px 28px; font-size: 1.05rem; }
    .hero-image-container { max-width: 450px; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1.15rem; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-image-container { max-width: 400px; }
    
    .badge-2 {
        right: -20px;
    }
}

/* Updated Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        min-height: 70vh; 
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .container { padding: 30px 15px 50px; }
    .hero-content { 
        gap: 40px; 
        min-height: calc(60vh - 100px); 
    }
    
    .cta-buttons {
        flex-direction: row; 
        flex-wrap: nowrap; /* Changed from wrap to nowrap */
        gap: 10px; /* Reduced gap */
        margin-bottom: 30px;
        justify-content: center; /* Center the buttons */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
        padding-bottom: 5px; /* Space for scroll if needed */
    }
    
    .btn {
        padding: 12px 20px; /* Reduced padding */
        font-size: 0.9rem; /* Slightly smaller font */
        min-width: 140px; /* Reduced minimum width */
        flex: 0 1 auto; /* Allow buttons to shrink */
        width: auto; /* Remove full width */
    }
    
    .achievement-badge {
        padding: 12px;
        max-width: 140px;
        transform: scale(0.85);
    }
    
    .badge-1 {
        top: -15px;
        left: -15px;
    }
    
    .badge-2 {
        top: 50%;
        right: -15px;
    }
    
    .badge-3 {
        bottom: -15px;
        left: 3px;
    }
    
    .hero-image-container {
        display: block;
        padding: 0 10px;
    }
    
    .image-overlay {
        top: -5px;
        right: -5px;
        bottom: -5px;
        left: -5px;
    }
    
    .achievement-badge .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .badge-number {
        font-size: 1.1rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .container { padding: 20px 15px 40px; }
    .trust-badge { font-size: 0.85rem; padding: 6px 14px; }
    
    .cta-buttons {
        gap: 8px; /* Even smaller gap */
        flex-direction: row; /* Keep in one line */
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: flex-start; /* Align to start */
        overflow-x: auto; /* Allow horizontal scrolling */
        padding-bottom: 8px;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 10px 16px; /* Further reduced padding */
        font-size: 0.85rem; /* Smaller font */
        min-width: 120px; /* Even smaller minimum width */
        flex: 0 0 auto; /* Don't grow or shrink */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    .btn i {
        font-size: 0.8rem;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    .achievement-badge {
        padding: 10px;
        max-width: 120px;
        transform: scale(0.75);
    }
    
    .achievement-badge .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .badge-1 {
        top: -10px;
        left: -10px;
    }
    
    .badge-2 {
        top: 50%;
        right: -10px;
    }
    
    .badge-3 {
        bottom: -10px;
        left: 3px;
    }
    
    .image-overlay {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 14px; /* Minimal padding */
        font-size: 0.8rem; /* Small font */
        min-width: 110px; /* Compact width */
    }
    
    .btn i {
        display: inline-block; 
        font-size: 0.75rem; /* Smaller icons */
    }
    
    .hero-section {
        min-height: 65vh;
    }
    
    .cta-buttons {
        gap: 6px; /* Minimal gap */
    }
    
    .achievement-badge {
        transform: scale(0.7);
    }
    
    .badge-1 {
        top: -8px;
        left: -8px;
    }
    
    .badge-2 {
        top: 50%;
        right: -8px;
    }
    
    .badge-3 {
        bottom: -8px;
        left: 3px;
    }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.9rem; }
    .hero-description { font-size: 0.95rem; }
    .container { padding: 15px 12px 30px; }
    .features-grid { gap: 10px; }
    .feature-item { font-size: 0.9rem; }
    
    .cta-buttons {
        gap: 4px; /* Very small gap */
    }
    
    .btn {
        padding: 7px 12px; /* Very compact */
        font-size: 0.75rem; /* Very small text */
        min-width: 100px; /* Very compact width */
    }
    
    .achievement-badge {
        transform: scale(0.65);
        max-width: 110px;
    }
    
    .badge-1 {
        top: -5px;
        left: -5px;
    }
    
    .badge-2 {
        top: 50%;
        right: -5px;
    }
    
    .badge-3 {
        bottom: -5px;
        left: 3px;
    }
}

@media (max-width: 350px) {
    .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 90px;
    }
    
    .cta-buttons {
        gap: 3px;
    }
}
@media (min-width: 1024px) {
    .hero-content { 
        grid-template-columns: 1fr 1fr; 
        gap: 40px;
    }
}

/*Hero Section css ends here.*/


/*About us section css Starts here.*/

.about-container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    align-items: center;
    background: none !important;
    width: 100%;
    box-sizing: border-box;
}

.images-section {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.dot-pattern {
    position: absolute;
    top: -70px;
    left: -10px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #D6B91D 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 1.07;
    z-index: 1;
}

.image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    z-index: 2;
    width: 100%;
    height: 500px;
    max-width: 100%;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
    height: 100%;
}

.image-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-box:nth-child(1) { border-radius: 60px 20px 20px 0px; }
.image-box:nth-child(2) { border-radius: 20px 0px 0px 20px; }
.image-box:nth-child(3) { border-radius: 30px 0px 80px 0px; }
.image-box:nth-child(4) { border-radius: 0px 20px 30px 30px; }

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 5px solid #fff;
}

.center-icon img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.content-section {
    flex: 1;
    order: 2;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.about-title {
       font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    word-wrap: break-word;
}

.about-title span:first-child { color: #D6B91D; }
.about-title span:last-child { color: #202020; }

.title-line {
    width: 120px;
    height: 5px;
    background: #D6B91D;
    border-radius: 4px;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
}

.description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
}

.description.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .about-container {
        padding: 60px 30px;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .dot-pattern {
        margin-top: 30px;
    }

    .content-section { order: 1; }
    .images-section { 
        order: 2; 
        width: 100%;
        padding: 0 10px;
    }

    .image-grid { 
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-title { 
        font-size: 42px;
        text-align: center;
    }
    
    .title-line {
        margin: 0 auto 30px auto;
    }

    .image-box:nth-child(1) { border-radius: 40px 15px 15px 0; }
    .image-box:nth-child(2) { border-radius: 15px 0 0 15px; }
    .image-box:nth-child(3) { border-radius: 20px 0 60px 0; }
    .image-box:nth-child(4) { border-radius: 0 15px 20px 20px; }
}

@media (max-width: 768px) {
    .about-container {
        padding: 30px 15px;
        gap: 30px;
    }
    
    .image-grid {
        height: 350px;
        gap: 15px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 15px;
        text-align: left;
    }
    
    .center-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .about-title { 
        font-size: 32px;
    }
    
    .image-grid {
        height: 300px;
        gap: 10px;
    }
    
    .center-icon { 
        width: 80px; 
        height: 80px; 
    }
    
    .dot-pattern { 
        display: none;
    }

    .image-box:nth-child(1) { border-radius: 25px 10px 10px 0; }
    .image-box:nth-child(2) { border-radius: 10px 0 0 10px; }
    .image-box:nth-child(3) { border-radius: 15px 0 40px 0; }
    .image-box:nth-child(4) { border-radius: 0 10px 15px 15px; }
}

@media (max-width: 400px) {
    .about-title { 
        font-size: 28px; 
    }
    
    .description { 
        font-size: 14px; 
    }
    
    .image-grid {
        height: 250px;
    }
    
    .image-box {
        border-radius: 12px !important;
    }
    
    .image-box:nth-child(1),
    .image-box:nth-child(2),
    .image-box:nth-child(3),
    .image-box:nth-child(4) {
        border-radius: 12px !important;
    }
}

/*About us section css ends here.*/

/*services section css starts here*/

.services-section {
    padding: 80px 20px 60px 20px;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.three-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    scroll-behavior: smooth;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;

    /* FIX: Cards same height */
    align-items: stretch;
}

.three-cards::-webkit-scrollbar {
    height: 8px;
}

.three-cards::-webkit-scrollbar-thumb {
    background: #D6B91D;
    border-radius: 4px;
}

.card {
    position: relative;
    flex: 0 0 320px;
    padding: 40px 25px 60px 25px;
    background: #fffbe8;
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    max-width: 100%;
    box-sizing: border-box;

    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center-card {
    /* FIX: This now ONLY shifts card visually, not the height */
    margin-top: 40px;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #D6B91D, #373435, #D6B91D);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #ffffff;
    border-radius: 18px;
    z-index: -1;
}

.card:hover::before {
    opacity: 1;
    animation: moveGradient 3s linear infinite;
}

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

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #373435;
    font-weight: 600;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
}

.card p {
    font-size: 15px;
    color: #373435;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.card-number {
    font-size: 40px;
    font-weight: 700;
    color: #D6B91D;
    opacity: 0.15;
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 1;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ====== Responsive ====== */
@media (max-width: 1200px) { 
    .three-cards { 
        gap: 25px; 
    }
    .card {
        flex: 0 0 300px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 70px 20px 50px 20px;
    }
    .three-cards { 
        gap: 20px; 
    }
    .center-card { 
        margin-top: 25px; 
    }
    .card {
        flex: 0 0 280px;
        padding: 35px 20px 50px 20px;
    }
    .card h3 {
        font-size: 20px;
    }
    .card p {
        font-size: 14.5px;
    }
    .card-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px 40px 15px;
    }
    .three-cards { 
        gap: 15px; 
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    .card { 
        flex: 0 0 280px; 
        margin-bottom: 15px;
    }
    .center-card { 
        margin-top: 0; 
    }
    .card h3 {
        font-size: 19px;
    }
    .card p {
        font-size: 14px;
    }
    .card-number {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 10px 30px 10px;
    }
    .three-cards { 
        gap: 12px; 
        flex-direction: column;
        align-items: center;
        padding: 0 5px;
    }
    .card { 
        width: 100%;
        max-width: 320px;
        padding: 30px 20px 45px 20px;
    }
    .center-card {
        margin-top: 0;
    }
    .card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .card p {
        font-size: 14px;
        line-height: 1.6;
    }
    .card-number {
        font-size: 32px;
        bottom: 12px;
        right: 18px;
    }
}

@media (max-width: 400px) {
    .services-section {
        padding: 40px 8px 25px 8px;
    }
    .three-cards { 
        gap: 10px; 
    }
    .card { 
        padding: 25px 15px 40px 15px; 
        max-width: 280px;
    }
    .card h3 { 
        font-size: 17px; 
    }
    .card p { 
        font-size: 13.5px; 
    }
    .card-number { 
        font-size: 28px; 
        bottom: 10px;
        right: 15px;
    }
}

/*services section css ends here */


/*why choose us css starts here*/
       
.why-choose-us {
    padding: 80px 5%;
    background: white;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
}

.text-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    min-width: 0;
}

.text-content.reveal {
    opacity: 1;
    transform: translateX(0);
}

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

.description2 p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.tick-icon {
    width: 30px;
    height: 30px;
    background: #D6B91D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tick-icon i {
    color: white;
    font-size: 14px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    word-wrap: break-word;
}

.image-content {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 450px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.image-content.reveal {
    opacity: 1;
    transform: translateX(0);
}

.decorative-image {
    position: absolute;
    top: 2%; /* Reduced from 0 */
    right: 0;
    bottom: 5%; /* Reduced from 0 */
    left: 0;
    width: 90%;
    margin: 0 auto;
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    overflow: hidden;
    border-radius: 10px;
    height: 85%; /* Reduced from 100% */
    max-width: 100%;
}

.image-content:hover .decorative-image {
    transform: rotate(-3deg);
}

.decorative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.main-image-container {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    width: 100%;
    max-width: 500px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
    color: #D6B91D;
    font-size: 16px;
    width: 100%;
    max-width: 500px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-us {
        padding: 70px 4%;
    }
    
    .section-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .description2 p {
        font-size: 17px;
    }
    
    .main-image-container {
        height: 380px;
    }
    
    .decorative-image {
        height: 85%; /* Reduced from 95% */
        top: 7.5%; /* Adjusted to maintain centering */
        bottom: 7.5%; /* Adjusted to maintain centering */
    }
}

@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .text-content, .image-content {
        width: 100%;
        max-width: 600px;
    }
    
    .image-content {
        margin-top: 0;
        min-height: 400px;
        padding: 0;
    }
    
    .decorative-image {
        width: 100%;
        height: 85%; /* Reduced from 90% */
        top: 7.5%; /* Adjusted from 5% */
        bottom: 7.5%; /* Added to maintain centering */
        left: 0;
    }
    
    .main-image-container {
        height: 350px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 3%;
    }
    
    .section-container {
        gap: 30px;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-row {
        margin-bottom: 15px;
        justify-content: flex-start;
    }
    
    .feature-box h3 {
        font-size: 16px;
    }
    
    .description2 p {
        font-size: 16px;
        text-align: left;
    }
    
    .decorative-image {
        transform: rotate(-2deg);
        height: 80%; /* Reduced from 85% */
        top: 10%; /* Adjusted from 7.5% */
        bottom: 10%; /* Added to maintain centering */
    }
    
    .image-content:hover .decorative-image {
        transform: rotate(-2deg);
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .image-caption {
        margin-top: 20px;
        font-size: 15px;
    }
    
    .image-content {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 50px 2%;
    }
    
    .section-container {
        gap: 25px;
        padding: 0 5px;
    }
    
    .description2 {
        margin-bottom: 30px;
    }
    
    .description2 p {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-row {
        margin-bottom: 12px;
    }
    
    .tick-icon {
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }
    
    .tick-icon i {
        font-size: 13px;
    }
    
    .feature-box h3 {
        font-size: 15px;
    }
    
    .image-content {
        min-height: 300px;
    }
    
    .decorative-image {
        height: 75%; /* Reduced from 80% */
        top: 12.5%; /* Adjusted from 10% */
        bottom: 12.5%; /* Added to maintain centering */
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .image-caption {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 400px) {
    .why-choose-us {
        padding: 40px 2%;
    }
    
    .section-container {
        gap: 20px;
    }
    
    .description2 {
        margin-bottom: 25px;
    }
    
    .description2 p {
        font-size: 14px;
    }
    
    .features-grid {
        gap: 10px;
    }
    
    .feature-row {
        margin-bottom: 10px;
    }
    
    .tick-icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    
    .tick-icon i {
        font-size: 12px;
    }
    
    .feature-box h3 {
        font-size: 14px;
    }
    
    .image-content {
        min-height: 280px;
    }
    
    .decorative-image {
        height: 70%; /* Reduced from 75% */
        top: 15%; /* Adjusted from 12.5% */
        bottom: 15%; /* Added to maintain centering */
    }
    
    .main-image-container {
        height: 220px;
    }
    
    .image-caption {
        font-size: 13px;
    }
}

/*why choose us css ends here */

/*how we work section css starts from here*/
.process-section {
    text-align: center;
    padding: 80px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.process-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-section h2 {
    font-size: 2.5rem;
    margin-top: -90px;
    word-wrap: break-word;
    padding: 0 15px;
}

.heading-part1 {
    color: #D6B91D;
}

.heading-part2 {
    color: #373435;
}

.process-section .description {
    color: #373435;
    margin-bottom: 50px;
    font-size: 1rem;
    padding: 0 15px;
    max-width: 100%;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 100%;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D6B91D;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.circle:hover {
    transform: scale(1.05);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step h3 {
    font-size: 1.1rem;
    color: #373435;
    margin-bottom: 5px;
    text-align: center;
    word-wrap: break-word;
}

.step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    text-align: center;
}

.arrow {
    font-size: 2rem;
    color: #D6B91D;
    display: flex;
    align-items: center;
    margin: 0 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.arrow.visible {
    opacity: 1;
    transform: translateX(0);
}

.down-arrow {
    display: none;
    font-size: 2rem;
    color: #D6B91D;
    margin: 10px 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .process-section {
        padding: 70px 20px;
    }
    
    .process-section h2 {
        font-size: 2.3rem;
    }
    
    .step {
        max-width: 170px;
    }
}

@media (max-width: 992px) {
    .process-section {
        padding: 60px 20px;
    }
    
    .process-section h2 {
        font-size: 2.1rem;
        margin-top: -70px;
    }
    
    .step {
        max-width: 160px;
    }
    
    .circle {
        width: 75px;
        height: 75px;
    }
    
    .arrow {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 15px;
    }
    
    .process-section h2 {
        font-size: 1.9rem;
        margin-top: -50px;
    }
    
    .process-steps {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .step {
        max-width: 220px;
        margin-bottom: 10px;
    }
    
    .arrow {
        display: none;
    }
    
    .down-arrow {
        display: block;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .down-arrow.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 40px 10px;
    }
    
    .process-section h2 {
        font-size: 1.7rem;
        margin-top: -40px;
        padding: 0 10px;
    }
    
    .process-section .description {
        font-size: 0.9rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .step {
        max-width: 200px;
    }
    
    .circle {
        width: 70px;
        height: 70px;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .down-arrow {
        font-size: 1.6rem;
    }
}

@media (max-width: 400px) {
    .process-section {
        padding: 30px 5px;
    }
    
    .process-section h2 {
        font-size: 1.5rem;
        margin-top: -30px;
    }
    
    .process-section .description {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }
    
    .step {
        max-width: 180px;
    }
    
    .circle {
        width: 65px;
        height: 65px;
    }
    
    .step h3 {
        font-size: 0.95rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
    
    .down-arrow {
        font-size: 1.4rem;
    }
}

/*how we work section css ends from here*/

/* Testimonial Section CSS Starts */

.ac-testimonial-section {
    max-width: 1000px;
    width: 100%;
    padding: 3rem 2rem;
    margin: 0 auto;
}

.ac-testimonial-container {
    display: flex;
    gap: 1.2rem;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.ac-testimonial-column {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ac-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 180px; /* fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    border: 1px solid #f0f0f0;
    width: 90%;
    margin: 0 auto;
}

.ac-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214,185,29,0.15);
}

.ac-testimonial-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #444444;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-align: justify !important;
}

.ac-client-name {
    font-weight: 600;
    color: #373435;
    font-size: 1rem;
    margin-top: auto;
    text-align: left;
}

@keyframes ac-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes ac-scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.ac-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ac-left-column .ac-scroll-content {
    animation: ac-scroll-up 40s linear infinite;
}

.ac-right-column .ac-scroll-content {
    animation: ac-scroll-down 40s linear infinite;
}

.ac-testimonial-column:hover .ac-scroll-content {
    animation-play-state: paused;
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
    .ac-testimonial-section {
        max-width: 850px;
    }

    .ac-testimonial-card {
        padding: 1.8rem;
        height: 220px;
    }
}

@media (max-width: 992px) {
    .ac-testimonial-section {
        max-width: 750px;
        padding: 2.5rem 1.5rem;
    }

    .ac-testimonial-card {
        padding: 1.5rem;
        height: 220px;
    }

    .ac-testimonial-container {
        height: 480px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ac-testimonial-container {
        flex-direction: column;
        height: auto;
    }

    .ac-testimonial-card {
        padding: 1.5rem;
        height: auto;
        min-height: 200px;
    }

    .ac-left-column .ac-scroll-content,
    .ac-right-column .ac-scroll-content {
        animation: none;
    }

    .ac-testimonial-section {
        max-width: 650px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .ac-testimonial-section {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .ac-testimonial-card {
        padding: 1.25rem;
        min-height: 180px;
    }

    .ac-testimonial-text {
        font-size: 0.95rem;
    }

    .ac-client-name {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .ac-testimonial-section {
        padding: 1.25rem 0.75rem;
    }

    .ac-testimonial-card {
        padding: 1rem;
        min-height: 160px;
    }

    .ac-testimonial-text {
        font-size: 0.9rem;
    }

    .ac-client-name {
        font-size: 0.95rem;
    }
}

/* Testimonial Section CSS Ends */


/*request a callback section css starts here*/




        .info-bar {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            padding: 14px 20px;
            border: 1px solid #D6B91D;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #373435;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .info-text {
            font-size: 15px;
            line-height: 1.4;
            flex: 1;
            padding-right: 20px;
        }

        .info-text a {
            color: #D6B91D;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
        }

        .info-text a:hover {
            text-decoration: underline;
        }

        .call-wrap {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .call-icon {
            background: #ffffff;
            border: 2px solid #D6B91D;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #D6B91D;
            font-size: 18px;
            margin-right: -28px;  
            z-index: 2;
            position: relative;
        }

        .call-box {
            background: #D6B91D;
            color: #373435;
            padding: 15px 30px 15px 55px; 
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }


        @media (max-width: 1200px) {
            .info-bar {
                max-width: 900px;
            }
        }

      
        @media (max-width: 992px) {
            .info-bar {
                max-width: 95%;
                padding: 12px 16px;
            }
            
            .info-text {
                font-size: 14px;
                padding-right: 15px;
            }
            
            .call-box {
                padding: 15px 25px 15px 50px;
                font-size: 14px;
            }
            
            .call-icon {
                width: 48px;
                height: 48px;
                margin-right: -26px;
            }
        }

      
        @media (max-width: 768px) {
            .info-bar {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: center;
                text-align: center;
            }
            
            .info-text {
                padding-right: 0;
                flex-basis: 100%;
            }
            
            .call-wrap {
                justify-content: center;
            }
        }

        
        @media (max-width: 576px) {
            .info-bar {
                margin: 0 auto;
                padding: 12px;
            }
            
            .info-text {
                font-size: 14px;
            }
            
            .call-box {
                padding: 12px 20px 12px 45px;
                font-size: 14px;
            }
            
            .call-icon {
                width: 44px;
                height: 44px;
                font-size: 16px;
                margin-right: -22px;
            }
        }

       
        @media (max-width: 400px) {
            .info-bar {
                padding: 10px;
            }
            
            .info-text {
                font-size: 13px;
            }
            
            .info-text a {
                display: inline-block;
                margin-top: 5px;
            }
            
            .call-box {
                padding: 10px 15px 10px 40px;
                font-size: 13px;
            }
            
            .call-icon {
                width: 40px;
                height: 40px;
                font-size: 14px;
                margin-right: -20px;
            }
        }
        
        
        @media (max-width: 350px) {
            .info-bar {
                padding: 8px;
            }
            
            .info-text {
                font-size: 12px;
            }
            
            .call-box {
                padding: 8px 12px 8px 35px;
                font-size: 12px;
            }
            
            .call-icon {
                width: 36px;
                height: 36px;
                font-size: 13px;
                margin-right: -18px;
            }
        }
        
        
    
/*request a callback section css ends here*/    
        

/*Faqs section css starts here*/



        .faq-section {
            max-width: 900px;
            margin: 70px auto;
            padding: 0 25px;
        }

    
        .faq {
            border-bottom: 1px solid #e5e5e5;
            padding: 18px 0;
        }

        .faq input {
            display: none;
        }

        .faq-question {
            font-size: 1.15rem;
            font-weight: 600;
            color: #373435;
            cursor: pointer;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color .3s;
        }

        .faq-question:hover {
            color: #D6B91D;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid #D6B91D;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D6B91D;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq input:checked + .faq-question .faq-icon {
            transform: rotate(45deg);
            border-color: #373435;
            color: #373435;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            margin: 12px 0 18px;
            font-size: 0.98rem;
            color: #555;
            line-height: 1.6;
            padding-right: 10px;
        }

        .faq input:checked ~ .faq-answer {
            max-height: 300px;
        }

     
        @media (max-width: 1200px) {
            .faq-title { font-size: 2.1rem; }
        }

        @media (max-width: 992px) {
            .faq-title { font-size: 2rem; }
        }

        @media (max-width: 768px) {
            .faq-section { margin: 50px auto; }
            .faq-title { font-size: 1.9rem; }
            .faq-question { font-size: 1.05rem; }
        }

        @media (max-width: 576px) {
            .faq-title { font-size: 1.7rem; }
            .faq-question { font-size: 1rem; }
        }

        @media (max-width: 400px) {
            .faq-section { padding: 0 15px; }
            .faq-title { font-size: 1.55rem; }
        }
        
        
        
        /*Faqs section css ends here*/







/*Destination section css starts here */


.ac-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.ac-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    width: 100%;
}

.ac-header h1 {
    color: #373435;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.ac-header p {
    color: #4a4a4a;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    line-height: 1.6;
}

/* Cards Layout */
.ac-cards-wrapper {
    width: 100%;
    max-width: 1200px;
}

.ac-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.ac-card {
    position: relative;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background: white;
}

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

.ac-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: transparent;
    transition: all 0.4s ease;
}

.ac-card:hover .ac-card-content {
    padding-bottom: 30px;
}

.ac-card-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.ac-card-subtitle {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 15px;
}

.ac-card-description {
    color: white;
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ac-card:hover .ac-card-description {
    opacity: 1;
    max-height: 150px;
}

.ac-description-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ac-description-full {
    display: none;
}

.ac-card:hover .ac-description-preview {
    display: none;
}

.ac-card:hover .ac-description-full {
    display: block;
}

.ac-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    pointer-events: none;
    transition: all 0.4s ease;
}

.ac-card:hover .ac-card-overlay {
    height: 85%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.ac-mobile-description {
    display: none;
    padding: 15px;
    background: white;
    border-radius: 0 0 12px 12px;
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Large Tablets */
@media (max-width: 1024px) {
    .ac-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .ac-card {
        height: 480px;
    }
}

/* Medium Tablets */
@media (max-width: 900px) {
    .ac-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ac-card {
        height: 450px;
    }
    
    .ac-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }
}

/* Tablets and Mobile */
@media (max-width: 768px) {
    .ac-main-container {
        padding: 30px 15px;
    }
    
    .ac-header {
        margin-bottom: 30px;
    }
    
    .ac-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ac-card {
        height: 420px;
    }
    
    .ac-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .ac-card-description {
        opacity: 1;
        max-height: 150px;
    }
    
    .ac-description-preview {
        display: none;
    }
    
    .ac-description-full {
        display: block;
    }
    
    .ac-card:hover .ac-card-description {
        opacity: 1;
        max-height: 150px;
    }
    
    .ac-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .ac-card:hover .ac-card-content {
        padding-bottom: 25px;
    }
    
    .ac-card:hover .ac-card-overlay {
        height: 70%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    }
}


@media (max-width: 576px) {
    .ac-main-container {
        padding: 25px 15px;
    }
    
    .ac-header {
        margin-bottom: 25px;
    }
    
    .ac-cards-container {
        gap: 15px;
    }
    
    .ac-card {
        height: 380px;
    }
    
    .ac-card-content {
        padding: 20px 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .ac-main-container {
        padding: 20px 10px;
    }
    
    .ac-header {
        margin-bottom: 20px;
    }
    
    .ac-cards-container {
        gap: 12px;
    }
    
    .ac-card {
        height: 350px;
    }
    
    .ac-card-content {
        padding: 18px 12px;
    }
}


@media (max-width: 360px) {
    .ac-main-container {
        padding: 15px 8px;
    }
    
    .ac-card {
        height: 320px;
    }
    
    .ac-card-content {
        padding: 15px 10px;
    }
}



/*Destination section css starts here */


/*css of steps starts here*/


 .steps-section {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .step-card {
        background: #FFFEF4;
        border-radius: 14px;
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: 0.3s ease;
        min-height: 110px;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .step-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .step-number-container {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .step-label {
        font-weight: 700;
        font-size: 1.3rem;
        color: #373435;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        background: #D6B91D;
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-icon {
        width: 36px; 
        height: 36px; 
    }

    .step-icon img {
        width: 120%;
        height: 120%;
        object-fit: contain;
        filter: invert(20%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(0) contrast(80%);
    }

    .step-title {
        font-size: 0.95rem;
        font-weight: 500;
        color: #373435;
        text-align: left;
        margin-top: auto;
        line-height: 1.3;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .step-card {
            padding: 15px 12px;
            min-height: 100px;
        }
        
        .step-header {
            margin-bottom: 8px;
        }
        
        .step-icon {
            width: 32px;
            height: 32px;
        }
        
        .step-title {
            font-size: 0.9rem;
        }
    }


/*css of steps ends here*/






