body {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 0 0px;
}

.hero-section {
    background-color: #D0EBB9;
    overflow: hidden;
    /* margin-left: -16px;
    margin-right: -16px; */
}

.hero-content {
    padding: 40px 15px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.benefits {
    margin: 30px 0;
    padding-left: 0;
}

.benefits li {
    margin-bottom: 15px;
    list-style-type: none;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.benefits li:before {
    content: "✓";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-custom {
    position: relative;
    overflow: hidden;
    border: 2px solid #1034BF;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: bold;
    background: transparent;
    color: #1034BF;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1034BF;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-custom:hover {
    color: white;
    text-decoration: none;
}

.btn-custom:hover::before {
    left: 0;
}

.btn-custom.active {
    background: #FFD700;
    color: white;
}

.btn-custom.active::before {
    left: 0;
}

.hero-image {
    background-image: url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.hero-image2 {
    background-image: url('b2.webp');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.links-section {
    background-color: #00251F;
    padding: 15px 0;
    /* margin-left: -16px;
    margin-right: -16px; */
    padding-left: 16px;
    padding-right: 16px;
}

.nav-link-custom {
    color: #ffffff !important;
    font-weight: bold;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 5px;
    text-decoration: none;
}

.why-aviva-section {
    padding: 60px 0;
    /* margin-left: -16px;
    margin-right: -16px; */
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 35px;
}

.why-aviva-section h2 {
    font-size: 45px;
    margin-bottom: 30px;
}

.why-aviva-section .lead {
    font-size: 18px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    flex: 0 0 40px;
    color: #1034BF;
    font-size: 24px;
    margin-right: 15px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 24px;
}

.benefit-text {
    color: #333;
    font-size: 18px;
}

.right-column {
    background-color: #edf6ff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.instructor-img {
    max-height: 180px;
    width: auto;
    margin: 20px auto;
    display: block;
}

.link-list {
    list-style: none;
    padding-left: 0;
}

.link-list a {
    color: #1034BF;
    text-decoration: underline;
    display: block;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 700;
}

.section-subheading {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.packages-section {
    background-color: #ffffff;
}

.package-card {
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.package-title {
    font-size: 28px;

    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 1.5rem;
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.package-price {
    font-size: 24px;
    font-weight: bold;
    /* margin-bottom: 20px; */
}

.package-features {
    margin: 20px 0;
    padding-left: 20px;
}

.package-features li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.package-features li:before {
    content: "•";
    color: #0066CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-tab {
    background: none;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    position: relative;
}

.package-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #0066CC;
    border-radius: 2px;
}


.package-tab:hover {
    color: #0066CC;
}

.tabs-divider {
    border: none;
    border-top: 1px solid #ddd;
    width: 80%;
    margin: 0 0 1.5rem 0;
}

.reviews-section {
    padding: 60px 16px;
    background-color: #edf6ff;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reviews-title {
    font-size: 34px;
    color: #00251F;
    margin-bottom: 25px;
}

.reviews-badge {
    /* background-color: #0066CC;
    color: white; */
    padding: 8px 20px;
    border-radius: 20px;
    /* display: inline-block;
    margin-bottom: 20px; */
    font-weight: bold;
    font-size: 18px;
}

.reviews-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-card {
    background-color: #2E8B57;
    border-radius: 10px;
    padding: 40px;
    color: white;
    flex: 1;
    min-width: 300px;
}


.location-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.location-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.search-btn {
    background-color: white;
    color: #2E8B57;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-image-container {
    flex: 1;
    min-width: 300px;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* pg no 2 */
.hero-section {
    background-color: #D0EBB9;
    overflow: hidden;
    /* margin-left: -16px;
    margin-right: -16px;*/
}

.hero-content {
    padding: 40px 15px;
}

.location-card2 {
    background-color: #00596b;
    line-height: 2rem;
    padding: 40px;
    color: white;
    flex: 1;
    min-width: 300px;
}

.search-btn {
    background-color: white;
    color: #2E8B57;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
    padding: 40px 30px;
}

/* Make breadcrumb image touch edges */
.breadcrumb-hero-section .row>.col-md-5 {
    padding: 0;
}

.breadcrumb-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* List styles */
.locations-info-section ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.locations-info-section ul li::before {
    content: "›";
    /* arrow icon */
    position: absolute;
    left: 0;
    color: #0e0e0f;
    font-weight: bold;
}

.locations-info-section ul li a {
    text-decoration: none;
    border-bottom: 1px dotted #007bff;
    color: #007bff;
    transition: border-bottom 0.3s ease;
}

.locations-info-section ul li a:hover {
    border-bottom: 1px solid #007bff;
    text-decoration: none;
}

/* Divider line at start of columns */
.border-start {
    border-left: 2px solid #969a9d;
    padding-left: 1rem;
}

@media (max-width: 767.98px) {
    .breadcrumb-hero-section .row {
        flex-direction: column;
    }

    .breadcrumb-hero-section img {
        max-height: 300px;
    }

    .content {
        padding: 20px 15px;
    }

    .border-start {
        border-left: none;
        padding-left: 0;
    }

    /* Only necessary custom CSS */
    .contact-section {
        background-color: #f8f9fa;
        padding: 60px 0;
    }
}
/* pg no 3 */
  /* Only absolutely necessary custom CSS */
  .carlow-section {
    background-color: #f8f9fa;
}
.phone-table {
    width: 100%;
    border: 2px solid #0066CC;
    border-radius: 8px;
    overflow: hidden;
}

/* Only necessary custom CSS */
.contact-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
/* Only absolutely necessary custom CSS for scrolling */
.tabs-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Active tab indicator - can't be done with Bootstrap 4.1.3 */
.package-tab.active {
    color: #0066CC !important;
    position: relative;
}

.package-tab.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 15px;
    right: 15px;
    height: 3px;
    background-color: #0066CC;
}
.faq-container {
    font-size: 0.9rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-left: 3px solid #0d6efd;
    padding-left: 1rem;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #0d6efd;
}

.faq-answer {
    display: none;
    padding: 0.5rem 0;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
}

.toggle-btn {
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
}

/* Why Choose Us Section */
        .why-choose {
            padding: 4rem 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2rem;
            color: var(--primary);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            margin: 10px auto 0;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        /* Services Section */
        .services {
            padding: 4rem 0;
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .service-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        /* Test Center Section */
        .test-center {
            padding: 3rem 0;
            background-color: var(--light);
            text-align: center;
        }
        
        .test-center h2 {
            margin-bottom: 1.5rem;
        }
        
        .test-center p {
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Areas Covered */
        .areas {
            padding: 3rem 0;
            background-color: white;
        }
        
        .areas-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .area-tag {
            background-color: var(--light);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .area-tag:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 4rem 0;
            background-color: var(--light);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: rgba(42, 91, 215, 0.1);
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--primary), #1a3a8f);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .secondary-button {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .secondary-button:hover {
            background-color: white;
            color: var(--primary);
        }
        