/*
Theme Name: Edu Migrate
Theme URI: http://edumigratesolution.com/
Author: AI Assistant
Description: Custom WordPress theme replicating the layout and features of the University Gate website for the Edu Migrate brand.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edu-migrate
*/

/* Reset some default browser styles */
body, h1, h2, h3, h4, h5, h6, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Header styling */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}

.primary-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 20px;
}

.primary-menu li {
    margin-left: 15px;
}

.primary-menu a {
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

.primary-menu a:hover {
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
}

/* Hero section */
.hero {
    background-color: #0d47a1;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff5722;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e64a19;
}

/* Hero stats (years and success stories) */
.hero-stats {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffc107;
    font-weight: 500;
}

/* Steps section */
.steps {
    padding: 60px 20px;
    background-color: #fff;
}

.steps-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1 1 260px;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #0d47a1;
    margin-bottom: 10px;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: #555;
}

/* Destinations section */
.destinations {
    padding: 60px 20px;
    background-color: #fafafa;
}

.destinations-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.destination {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.destination h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.destination p {
    color: #777;
    font-size: 14px;
}

/* Footer styling */
.site-footer {
    background-color: #0d47a1;
    color: #fff;
    padding: 40px 20px;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-widget {
    flex: 1 1 200px;
    max-width: 300px;
}

.footer-widget h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #ccc;
}

/* Partners section */
.partners {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.partners-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.logo-placeholder {
    width: 100px;
    height: 40px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    border-radius: 4px;
}

/* Testimonials section */
.testimonials {
    padding: 60px 20px;
    background-color: #fafafa;
}

.testimonials-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    flex: 1 1 260px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
}

.testimonial p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.testimonial .author {
    font-weight: bold;
    font-size: 16px;
    color: #0d47a1;
}