/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible,
.animate-scale.visible,
.animate-slide-left.visible,
.animate-slide-right.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Apply animations to specific elements */
section, h1, h2, h3, h4, h5, h6, p, .btn, .btn-small {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible, h1.visible, h2.visible, h3.visible, h4.visible, h5.visible, h6.visible, p.visible, .btn.visible, .btn-small.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h2,
.profile-content h2,
.mission h2,
.services-preview h2 {
    animation: scaleIn 0.6s ease-out forwards;
}

.service-card,
.team-card,
.trade-card {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s);
}

.service-card *,
.team-card *,
.trade-card * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s + 0.3s);
}

.profile-image {
    animation: slideInLeft 0.6s ease-out forwards;
}

.profile-text {
    animation: slideInRight 0.6s ease-out forwards;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--section-index, 0) * 0.1s);
}

/* Global Styles */
:root {
    --primary-color: #5d4037; /* Coffee brown */
    --secondary-color: #8d6e63; /* Lighter brown */
    --accent-color: #c8a27a; /* Gold accent */
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #444;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: var(--secondary-color);
}

/* Trade Section Styles */
.trade-section {
    padding: 60px 0;
    background-color: white;
    margin-bottom: 40px;
}

.trade-section:nth-child(even) {
    background-color: var(--light-color);
}

.trade-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 36px;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trade-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.trade-card:hover {
    transform: translateY(-5px);
}

.trade-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.trade-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.trade-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Team Section Styles */
.team-section {
    padding: 60px 0;
    background-color: white;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 36px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-color);
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.team-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.team-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-form {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid,
    .trade-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu.active i {
        display: none;
    }

    .mobile-menu.active::before {
        content: '×';
        position: absolute;
        font-size: 32px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Value Added Section */
.value-added {
    padding: 60px 0;
    background-color: var(--light-color);
}

.value-added h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 36px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 35px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.value-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* Registration Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 50px;
}

.page-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.service-section {
    padding: 60px 0;
    background-color: white;
}

.service-section:nth-child(even) {
    background-color: var(--light-color);
}

.service-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 36px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item i {
    color: var(--accent-color);
    font-size: 24px;
}

.success-stories {
    padding: 60px 0;
    background-color: var(--light-color);
}

.success-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 36px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.story-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
}

.story-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-item p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-item p {
    color: var(--accent-color);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible,
.animate-scale.visible,
.animate-slide-left.visible,
.animate-slide-right.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Apply animations to specific elements */
section, h1, h2, h3, h4, h5, h6, p, .btn, .btn-small {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible, h1.visible, h2.visible, h3.visible, h4.visible, h5.visible, h6.visible, p.visible, .btn.visible, .btn-small.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h2,
.profile-content h2,
.mission h2,
.services-preview h2 {
    animation: scaleIn 0.6s ease-out forwards;
}

.service-card,
.team-card,
.trade-card {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s);
}

.service-card *,
.team-card *,
.trade-card * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s + 0.3s);
}

.profile-image {
    animation: slideInLeft 0.6s ease-out forwards;
}

.profile-text {
    animation: slideInRight 0.6s ease-out forwards;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--section-index, 0) * 0.1s);
}

/* Global Styles */
:root {
    --primary-color: #5d4037; /* Coffee brown */
    --secondary-color: #8d6e63; /* Lighter brown */
    --accent-color: #c8a27a; /* Gold accent */
    --light-color: #f5f5f5;
    --dark-color: #333;
    --text-color: #444;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: var(--secondary-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img{
    height: 50px;
    
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo p {
    color: var(--secondary-color);
    font-size: 14px;
}

nav ul {
    display: flex;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    nav ul.show {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-color);
    }
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu.active {
    transform: rotate(45deg);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/image 1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
    width: 100%;
    height: 30rem;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Section */
.profile {
    padding: 60px 0;
    background-color: white;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-image {
    flex: 1;
    text-align: center;
}

.profile-image img {
    max-width: 300px;
    border-radius: 50%;
    border: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-text {
    flex: 2;
}

.profile-text h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 32px;
}

.profile-text h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.expertise h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.expertise ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.expertise ul li {
    position: relative;
    padding-left: 25px;
}

.expertise ul li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mission Section */
.mission {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.mission h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

/* Services Preview Section */
.services-preview {
    padding: 60px 0;
    background-color: white;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

/* Registration Preview Section */
.registration-preview {
    padding: 60px 0;
    background-color: var(--accent-color);
    color: var(--dark-color);
    text-align: center;
}

.registration-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.registration-preview p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 18px;
    
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section i {
    margin-right: 15px;
    /*color: var(--accent-color);*/
    font-size: 24px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-bottom: 30px;
    }
    
    .expertise ul {
        grid-template-columns: 1fr;
    }
    
    .expertise ul li {
        text-align: left;
    }
}




/* Success Stories Styles */
.success-stories {
    padding: 60px 0;
    background-color: white;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.story-item {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-10px);
}

.story-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.story-item p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color);
}

.story-item .industry {
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
}

/* Services Page Specific Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}

.service-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-section:last-child {
    border-bottom: none;
}

.service-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-size: 32px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-item h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.service-item p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Registration Page Specific Styles */
.success-stories {
    background-color: white;
    padding: 60px 0;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.story-item {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-item p {
    line-height: 1.6;
    margin-bottom: 15px;
}