/* Hero */
.hero {
    background: var(--gradient-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}
.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(76,201,240,0.1) 0%, transparent 60%);
    top: -50%;
    left: -25%;
    z-index: 0;
}
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding-bottom: 25px;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 550px;
    color: var(--text-light);
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}
.hero-graphics {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 600px;
    animation: float 1.5s ease-out forwards;
}
.image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
}
@keyframes float {
    0% { transform: translateY(150px); opacity: 0; }
    100% { transform: translateY(0px); opacity: 1; }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f4f9ff 0%, #e0effc 100%);
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.3rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Offer Section */
.offer-section, .services-page {
    padding: 25px 0;
    background: var(--bg-gray);
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 35px 0;
    background: var(--bg-white);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}
.stars {
    color: #ffb703;
    margin-bottom: 20px;
}
.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
}
.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Page */
.about-page {
    padding: 100px 0;
    background: var(--bg-white);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.about-image {
    padding-top: 35px;
    flex: 1;
}

/* Team Section */
.team-section {
    padding: 30px 0;
    background: var(--bg-gray);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.team-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}
.team-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--gradient-accent);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.team-card:hover::before {
    width: 8px;
}
.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.team-info .designation {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Page Styles inside view-contact */
#view-contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}
.section-wrap {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 35px;
    background: var(--gradient-main);
}
.centered {
    text-align: center;
}
.section-tag {
    display: inline-block;
    background: rgba(76,201,240,0.15);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.section-title {
    font-size: 2.2rem;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}
.section-title .highlight {
    color: var(--accent-cyan);
}
.section-sub {
    color:  rgba(255,255,255,0.8);;
    font-size: 1rem;
}
.services-page{
    padding-top: 150px;
}
.card-header{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.card-header h3{
    margin: 0;
    line-height: 1.3;
}

.card-header .feature-icon{
    margin-bottom: 0;
    flex-shrink: 0;
}