/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Typography */
.hero-text-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 25px 0;
    font-weight: 300;
}

.hero-text-content h1 strong,
.hero-text-content h1 b {
    font-weight: 700;
}

.hero-sub {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Actions & Stats */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s;
}

.btn-play:hover {
    color: var(--primary);
}

.play-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-num {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

/* Right Side Image */
.hero-visual {
    position: relative;
    width: 100%;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.main-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.card-value {
    font-size: 16px;
    font-weight: 800;
    color: #000;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sub-title {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header-center h2 {
    font-size: 42px;
    margin: 0 0 20px 0;
    font-weight: 300;
    color: #111;
}

.section-header-center p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    text-decoration: none;
    background: #111111;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s, border-width 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-width: 4px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #000;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--primary);
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #eee;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    outline: none;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 0, 0.05);
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
}

.panel-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.panel-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 300;
}

.panel-text h3 strong {
    font-weight: 700;
}

.panel-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

/* =========================================
   SOCIAL NETWORK CTA SECTION
   ========================================= */
.social-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.social-cta-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1200px; 
    margin: 0 auto;
    height: 400px;
    background-image: url('../../assets/images/hero_main.png'); /* UPDATE THIS PATH */
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: background 0.3s;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 40px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content h2 strong {
    font-weight: 700;
    color: var(--primary);
}

.cta-content p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #dddddd;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary);
    color: #000;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.social-cta-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.social-cta-container:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.social-cta-container:hover .btn-cta {
    background-color: #ffffff;
    color: var(--primary);
}

/* =========================================
   CLIENT ROTARY SECTION
   ========================================= */
.client-section {
    padding: 60px 0;
    border-top: 1px solid #ddd;
    background: #fff;
}

.scroller-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scroller-container::before,
.scroller-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.scroller-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.scroller-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.scroller-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.client-logo {
    display: inline-block;
    padding: 0 40px;
    font-size: 24px;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   PARTNER ROTARY SECTION (NEW)
   ========================================= */
.partner-section {
    padding: 60px 0;
    background: #ffffff; /* Clean white base */
    border-top: 1px solid #eee;
}

.partner-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 700;
}

.partner-logo {
    display: inline-block;
    padding: 0 50px; /* Wider spacing for partners */
    font-size: 22px;
    font-weight: 700;
    color: #555; /* Darker than client logos */
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: default;
}

.partner-logo:hover {
    color: #000; /* Turns black on hover */
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-content h1 { font-size: 40px; }
    .hero-sub { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .panel-grid { grid-template-columns: 1fr; text-align: center; padding: 30px; }
    .panel-image { margin-bottom: 30px; }
    .social-cta-container { height: 350px; }
    .cta-content h2 { font-size: 36px; }
    .floating-card { position: relative; bottom: auto; left: auto; margin: -30px auto 0; width: 250px; justify-content: center; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-section { padding: 40px 0; }
    .btn-main { width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-play { width: 100%; justify-content: center; }
    .section-header-center h2 { font-size: 32px; }
    .panel-text h3 { font-size: 24px; }
    .social-cta-container { height: auto; padding: 40px 20px; border-radius: 20px; }
    .cta-content h2 { font-size: 28px; }
    .cta-content p { font-size: 16px; }
    .btn-cta { width: 100%; display: block; }
}

/* =========================================
   NEWS SECTION
   ========================================= */
.news-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    line-height: 1;
}

.news-date .day { display: block; font-size: 18px; }
.news-date .month { display: block; font-size: 12px; text-transform: uppercase; }

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #111;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .news-grid { grid-template-columns: 1fr; }
}