/* General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #F1F1F1;
    color: #333;
}

/* Mobile-First Design */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50; /* Darker shade for headings */
    font-weight: bold;
}

p {
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-section h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #3498db; /* A vibrant blue */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Sections */
.section {
    padding: 40px 15px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* Font Awesome Integration (Example) */
.icon {
    margin-right: 8px;
}

/* Responsive Design for Tablets and Desktops */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }

    .hero-section {
        padding: 80px 30px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section p {
        font-size: 1.3em;
    }

    .section {
        padding: 50px 30px;
    }

    .section h2 {
        font-size: 2.2em;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 960px;
    }

    .hero-section {
        padding: 100px 40px;
    }

    .hero-section h1 {
        font-size: 3.8em;
    }

    .hero-section p {
        font-size: 1.5em;
    }

    .section {
        padding: 60px 40px;
    }

    .section h2 {
        font-size: 2.5em;
    }

    /* Grid for Journals and Testimonials */
    .grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .grid-item {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
} 

/* === Services Grid Section === */
.services-rtl {
    direction: rtl;
}
.services-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2em;
    color: #1a237e;
    font-weight: bold;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
    padding: 32px 20px 24px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.16);
    transform: translateY(-6px) scale(1.03);
}
.service-icon {
    font-size: 2.8em;
    color: #1565c0;
    margin-bottom: 18px;
    background: #e3f2fd;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
}
.service-title {
    font-size: 1.25em;
    margin-bottom: 12px;
    color: #263238;
    font-weight: bold;
}
.service-desc {
    font-size: 1em;
    color: #444;
    margin-bottom: 22px;
    flex: 1;
}
.service-cta {
    background: linear-gradient(90deg, #1976d2 0%, #00bcd4 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}
.service-cta:hover {
    background: linear-gradient(90deg, #00bcd4 0%, #1976d2 100%);
    box-shadow: 0 4px 16px rgba(0,188,212,0.16);
}
@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-card {
        min-height: 340px;
    }
} 

/* === FAQ Collapsible Styles === */
.faq-collapsible {
    margin-bottom: 18px;
    border-radius: 8px;
    background: #f7f9fa;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    overflow: hidden;
    border: 1px solid #e3e6ea;
}
.faq-question {
    cursor: pointer;
    padding: 18px 24px 18px 16px;
    font-size: 1.08em;
    font-weight: bold;
    color: #1976d2;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
}
.faq-question .faq-toggle-icon {
    font-size: 1.2em;
    margin-right: 12px;
    transition: transform 0.3s;
}
.faq-collapsible.faq-open .faq-question .faq-toggle-icon {
    transform: rotate(90deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    padding: 0 24px;
    font-size: 1em;
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-collapsible.faq-open .faq-answer {
    padding: 18px 24px;
    max-height: 400px;
}
@media (max-width: 600px) {
    .faq-question, .faq-answer {
        padding-right: 12px;
        padding-left: 8px;
    }
} 

/* === Testimonials Creative Card Styles === */
#testimonials-section .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
}
#testimonials-section .grid-item {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    border-right: 6px solid #1976d2;
    padding: 32px 28px 24px 20px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    direction: rtl;
}
#testimonials-section .grid-item:hover {
    box-shadow: 0 8px 36px rgba(25,118,210,0.18);
    transform: translateY(-6px) scale(1.03);
    border-right: 6px solid #00bcd4;
}
#testimonials-section .grid-item p {
    margin: 0 0 10px 0;
    font-size: 1.08em;
    color: #263238;
    line-height: 1.8;
    position: relative;
    padding-right: 36px;
}
#testimonials-section .grid-item p:first-child::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #1976d2;
    font-size: 1.5em;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.18;
}
#testimonials-section .grid-item strong {
    color: #1976d2;
    font-size: 0.98em;
    font-weight: bold;
}
@media (min-width: 600px) {
    #testimonials-section .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    #testimonials-section .grid-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
} 

/* === Journals Distinct Creative Card Styles === */
#journals-section .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
}
#journals-section .grid-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,188,212,0.10);
    position: relative;
    padding: 38px 28px 22px 18px;
    min-height: 120px;
    display: flex;
    align-items: center;
    font-size: 1.08em;
    color: #1976d2;
    font-weight: bold;
    direction: rtl;
    border: 1.5px solid #e3f2fd;
    overflow: visible;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
#journals-section .grid-item:hover {
    box-shadow: 0 8px 32px rgba(0,188,212,0.18);
    transform: translateY(-7px) scale(1.04);
    border-color: #00bcd4;
}
#journals-section .journal-ribbon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: linear-gradient(180deg, #00bcd4 0%, #1976d2 100%);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
#journals-section .journal-icon {
    position: absolute;
    top: -24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e3f2fd 60%, #fff 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7em;
    color: #00bcd4;
    z-index: 2;
    border: 2px solid #fff;
}
#journals-section .grid-item span {
    z-index: 1;
}
@media (min-width: 600px) {
    #journals-section .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    #journals-section .grid-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
} 