/* ==========================================
   GMB SONS PVT LTD - Main Stylesheet
   ========================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-color: #1e1e4b;
    --secondary-color: #2e3192;
    --accent-color: #f39c12;
    --highlight-pink: #e91e63;
    --highlight-cyan: #00bcd4;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1e1e4b 0%, #2e3192 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* ==========================================
   Header Styles
   ========================================== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.company-tagline {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .company-tagline {
        font-size: 10px;
    }
}
/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    background: var(--gradient-hero);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(103, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.title-highlight {
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
}

.title-main {
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Illustration */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.database-icon {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

.database-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.database-icon::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.graph-bars {
    position: absolute;
    right: 15%;
    top: 10%;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    height: 200px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.bar {
    width: 40px;
    background: linear-gradient(180deg, var(--highlight-pink) 0%, var(--highlight-cyan) 100%);
    border-radius: 5px 5px 0 0;
    animation: growUp 2s ease-in-out infinite;
}

.bar-1 { height: 60%; animation-delay: 0s; }
.bar-2 { height: 100%; animation-delay: 0.2s; }
.bar-3 { height: 75%; animation-delay: 0.4s; }
.bar-4 { height: 85%; animation-delay: 0.6s; }
.bar-5 { height: 50%; animation-delay: 0.8s; }

.devices-icon {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 200px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite 1s;
}

.devices-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 60%;
    background: linear-gradient(135deg, var(--highlight-cyan) 0%, var(--highlight-pink) 100%);
    border-radius: 5px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    animation: floatCircle 4s ease-in-out infinite;
}

.circle-1 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    top: 30%;
    left: 40%;
    animation-delay: 0s;
}

.circle-2 {
    width: 30px;
    height: 30px;
    background: rgba(243, 156, 18, 0.2);
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.circle-3 {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.2);
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* ==========================================
   Button Styles
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    background: var(--gradient-hero);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   Products Section
   ========================================== */
.products-preview {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s;
    cursor: pointer;
}

.product-category:hover {
    transform: scale(1.05);
}

.category-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.product-category h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-category p {
    font-size: 14px;
    opacity: 0.9;
}
/* meet our leadership */
.leadership-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #0d0f39;
    margin-bottom: 50px;
    font-weight: bold;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    border: 5px solid #f0f0f0;
}

.leader-name {
    font-size: 24px;
    color: #0d0f39;
    font-weight: bold;
    margin-bottom: 10px;
}

.leader-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 0.6s ease;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0077b5;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.social-icon.twitter {
    background: #000000;
    color: white;
}

.social-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FIXED: Added rules for icon font elements */
.social-icon i {
    font-size: 25px;
    color: white;
    display: block;
    margin: 0 auto;
}

/* Kept existing rules for img/svg (though not used in this case) */
.social-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.social-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .leader-card {
                padding: 30px 20px;
            }

            .leader-name {
                font-size: 20px;
            }

            .leader-title {
                font-size: 14px;
            }
        }
/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(-10px, -20px);
    }
    75% {
        transform: translate(-10px, 10px);
    }
}

@keyframes growUp {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.1);
    }
}

/* ==========================================
   Inner Page Hero with Wave Design
   ========================================== */
.inner-page-hero {
    background: linear-gradient(180deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.inner-page-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(103, 126, 234, 0.05);
    border-radius: 50%;
    top: -200px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.inner-page-hero .decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    animation: floatCircle 4s ease-in-out infinite;
}

.decorative-circle-1 {
    width: 80px;
    height: 80px;
    background: rgba(156, 39, 176, 0.1);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.decorative-circle-2 {
    width: 120px;
    height: 120px;
    background: rgba(103, 126, 234, 0.08);
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.decorative-circle-3 {
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.1);
    bottom: 30%;
    right: 8%;
    animation-delay: 3s;
}

.decorative-circle-4 {
    width: 40px;
    height: 40px;
    background: rgba(156, 39, 176, 0.15);
    top: 25%;
    right: 25%;
    animation-delay: 2s;
}

.inner-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.inner-page-hero-content h1 {
    font-size: 64px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.inner-page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .inner-page-hero-content h1 {
        font-size: 42px;
    }

    .inner-page-hero-content p {
        font-size: 16px;
    }

    .inner-page-hero {
        padding: 100px 0 120px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid #eee;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .illustration-container {
        height: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }
}
