/* ============================================
   SUN ENERGY - PROFESSIONAL WEBSITE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   TAGLINE HEADER
   ============================================ */

.tagline-header {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: white;
    padding: 8px 0;
    text-align: center;
    border-bottom: 2px solid #FF6B35;
}

.tagline-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tagline-text {
    color: #FFD89B;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   LOCATION HEADER
   ============================================ */

.location-header {
    background: linear-gradient(135deg, #2C1F1F 0%, #3D2D2D 100%);
    color: #D4A574;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 2px solid #D4A574;
}

.location-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 16px;
}

.location-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   TOP CONTACT HEADER
   ============================================ */

.top-header {
    background: linear-gradient(135deg, #001a4d 0%, #002966 100%);
    color: white;
    padding: 10px 0;
    font-size: 12px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-contact-item {
    color: #FF9D5C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.top-contact-item:hover {
    color: #FFAA70;
    transform: translateY(-2px);
}

.location-item {
    color: #FF9D5C;
}

.contact-icon {
    font-size: 12px;
}

.contact-text {
    font-size: 12px;
    font-weight: 500;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    background: #25D366;
}

.whatsapp-icon:hover {
    background: #1FA855;
}

.facebook-icon {
    background: #1877F2;
}

.facebook-icon:hover {
    background: #0A5FCC;
}

.instagram-icon {
    background: #E4405F;
}

.instagram-icon:hover {
    background: #C6003B;
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */

.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 26, 77, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #001a4d 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-link {
    color: #001a4d;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.admin-btn {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.admin-btn:hover {
    background: linear-gradient(135deg, #003d99 0%, #005fcc 100%);
    box-shadow: 0 4px 12px rgba(0, 26, 77, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   HOME SECTION
   ============================================ */

.home-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #001a4d 0%, #002966 25%, #003d99 50%, #002966 75%, #001a4d 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 171, 96, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.section-content.two-column {
    grid-template-columns: 1fr 1fr;
}

.section-content.two-column.reverse {
    grid-auto-flow: dense;
}

.section-content.two-column.reverse> :first-child {
    grid-column: 2;
}

.section-content.home-with-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: 400px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 26, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: slideInUp 0.8s ease-out backwards;
}

.home-gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.home-gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.home-gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.home-gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.home-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-gallery-item:hover .home-gallery-img {
    transform: scale(1.05);
}

.home-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.4) 0%, rgba(255, 107, 53, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-gallery-item:hover .home-gallery-overlay {
    opacity: 1;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #FF6B35, #001a4d);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    animation: rotateGradient 6s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-image {
    max-width: 100%;
    width: 110%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 26, 77, 0.3),
        0 0 0 3px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: floatImage 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.01);
    }
}

.section-image:hover {
    box-shadow:
        0 30px 80px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(255, 107, 53, 0.6);
}

.text-container h1 {
    font-size: 48px;
    margin: 20px 0 10px;
    background: linear-gradient(135deg, #FFD89B 0%, #FFECB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out;
}

.text-container h2 {
    font-size: 20px;
    color: #FFD89B;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.text-container p {
    color: #E5E5E5;
    margin-bottom: 20px;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: zoomIn 0.8s ease-out;
}

.main-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin: 20px 0;
}

.title-sun {
    color: #FFE5B4;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.title-energy {
    color: #FFD89B;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.tagline {
    font-size: 18px;
    color: #D4D4D4;
    margin: 15px 0 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.corner-decoration {
    position: relative;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-showcase {
    padding: 80px 0;
    background: #f9f9f9;
}

.gallery-section-title {
    text-align: center;
    font-size: 44px;
    color: #1a472a;
    margin-bottom: 10px;
}

.highlight-green {
    color: #ff8c00;
}

.gallery-section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item-inner {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-inner:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.gallery-item-inner:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ff8c00;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.gallery-item-content {
    padding: 25px;
}

.gallery-item-title {
    font-size: 18px;
    color: #1a472a;
    margin-bottom: 10px;
    font-weight: bold;
}

.gallery-item-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.about-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #001a4d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-hero-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* About Main Section */
.about-main {
    margin-bottom: 50px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 26, 77, 0.15);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 26, 77, 0.2);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mission Statement */
.mission-box {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.mission-box .mission-text {
    font-size: 18px;
    color: #001a4d;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

/* Offerings Grid */
.offerings {
    margin: 0;
}

.offerings-title {
    font-size: 22px;
    font-weight: 800;
    color: #001a4d;
    margin-bottom: 20px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offering-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
    box-shadow: 0 4px 15px rgba(0, 26, 77, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
}

.offering-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.offering-icon {
    font-size: 36px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-text h4 {
    font-size: 15px;
    color: #001a4d;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.offering-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Quality Badge */
.quality-badge {
    background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.12);
}

.quality-icon {
    font-size: 32px;
    color: #FF6B35;
    font-weight: 800;
    min-width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
}

.quality-content h4 {
    font-size: 16px;
    color: #001a4d;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.quality-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Highlight */
.leadership-highlight {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 26, 77, 0.15);
}

.leadership-icon {
    font-size: 32px;
    min-width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
}

.leadership-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #FFD89B;
}

.leadership-content p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-about {
    margin-top: 60px;
}

.why-choose-title {
    font-size: 28px;
    font-weight: 800;
    color: #001a4d;
    margin-bottom: 30px;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-choose-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 26, 77, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
    border-top: 3px solid #FF6B35;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.why-choose-check {
    font-size: 28px;
    color: #FF6B35;
    font-weight: 800;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-text h4 {
    font-size: 15px;
    color: #001a4d;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.why-choose-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
}

@keyframes floatingGradient {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -50px);
    }
}

.section-title {
    font-size: 42px;
    color: #001a4d;
    margin-bottom: 10px;
    font-weight: 700;
    animation: slideInDown 0.8s ease-out;
}

.highlight {
    color: #FF6B35;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, transparent);
    animation: expandWidth 0.8s ease-out 0.3s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.company-heading {
    font-size: 26px;
    background: linear-gradient(135deg, #001a4d 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
}

.company-subtitle {
    color: #000 !important;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.description {
    color: #000 !important;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    font-weight: 700 !important;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offerings {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #FF6B35;
    box-shadow: 0 8px 25px rgba(0, 26, 77, 0.08);
    animation: slideInRight 0.8s ease-out 0.4s backwards;
    transition: all 0.3s ease;
}

.offerings:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offerings-title {
    color: #001a4d;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.offerings-list {
    list-style: none;
    color: #000 !important;
}

.offerings-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    color: #000 !important;
}

.offerings-list li:nth-child(1) {
    animation-delay: 0.5s;
}

.offerings-list li:nth-child(2) {
    animation-delay: 0.55s;
}

.offerings-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.offerings-list li:nth-child(4) {
    animation-delay: 0.65s;
}

.offerings-list li:hover {
    color: #FF6B35;
    transform: translateX(10px);
}

.offerings-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-size: 16px;
    animation: spin 0.6s ease-out backwards;
}

.offerings-list li:hover::before {
    animation: rotateStar 0.4s ease-out;
}

@keyframes spin {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes rotateStar {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */

.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5c3e 50%, #1f5336 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.white-text {
    color: white;
    font-weight: 700;
}

.highlight-yellow {
    color: #FF6B35;
    font-weight: 700;
}

.vision-box,
.mission-box {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F6 100%);
    padding: 35px;
    border-radius: 15px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
    border: 2px solid #FF6B35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    animation: slideInUp 0.8s ease-out backwards;
}

.vision-box {
    animation-delay: 0.2s;
}

.mission-box {
    animation-delay: 0.3s;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-subtitle,
.mission-subtitle {
    font-size: 22px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vision-text {
    color: #001a4d;
    line-height: 1.9;
    font-weight: 500;
    font-size: 17px;
}

.mission-list {
    list-style: none;
    color: #001a4d;
}

.mission-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    color: #001a4d;
}

.mission-list li:hover {
    padding-left: 35px;
    color: #FF6B35;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
    font-size: 18px;
    animation: checkmark 0.6s ease-out backwards;
}

.mission-list li:nth-child(1)::before {
    animation-delay: 0.4s;
}

.mission-list li:nth-child(2)::before {
    animation-delay: 0.5s;
}

.mission-list li:nth-child(3)::before {
    animation-delay: 0.6s;
}

@keyframes checkmark {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.product-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-category {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-title {
    color: #1a472a;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-items {
    list-style: none;
    color: #666;
}

.product-items li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.product-items li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #ff8c00;
}

.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image-full {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */

.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.section-title-light {
    font-size: 40px;
    color: #1a472a;
    text-align: center;
    margin-bottom: 20px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.leadership-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 26, 77, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 2px solid rgba(255, 107, 53, 0.1);
    animation: slideInUp 0.8s ease-out backwards;
}

.leadership-card:nth-child(1) {
    animation-delay: 0.2s;
}

.leadership-card:nth-child(2) {
    animation-delay: 0.3s;
}

.leadership-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.leader-image {
    overflow: hidden;
    height: 380px;
    position: relative;
    background: linear-gradient(135deg, #001a4d, #FF6B35);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.leadership-card:hover .profile-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.7), rgba(255, 107, 53, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.leadership-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.leader-name {
    font-size: 24px;
    color: #001a4d;
    margin: 30px 25px 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.leader-title {
    color: #FF6B35;
    font-size: 18px;
}

.leader-designation {
    font-size: 14px;
    color: #FF6B35;
    margin: 5px 25px 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.leader-bio {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 25px 25px;
    text-align: justify;
    font-weight: 500;
}

/* ============================================
   FACTS SECTION
   ============================================ */

.facts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.facts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.facts-section .section-title {
    position: relative;
    z-index: 1;
    color: #1a472a;
    margin-bottom: 20px;
}

.facts-section .section-subtitle {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FF6B35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.facts-table-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.facts-table {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 26, 77, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.table-row {
    display: grid;
    grid-template-columns: 220px 40px 1fr;
    border-bottom: 2px solid rgba(255, 107, 53, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.table-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #FF6B35, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.table-row:hover::before {
    opacity: 1;
}

.table-row:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 26, 77, 0.05));
    transform: translateX(10px);
}

.table-row.alt {
    background: rgba(255, 107, 53, 0.03);
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    padding: 25px 25px;
    font-weight: 700;
    color: #001a4d;
    font-size: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    animation: slideInLeft 0.8s ease-out backwards;
}

.table-row:nth-child(1) .table-label {
    animation-delay: 0.1s;
}

.table-row:nth-child(2) .table-label {
    animation-delay: 0.15s;
}

.table-row:nth-child(3) .table-label {
    animation-delay: 0.2s;
}

.table-row:nth-child(4) .table-label {
    animation-delay: 0.25s;
}

.table-row:nth-child(5) .table-label {
    animation-delay: 0.3s;
}

.table-row:nth-child(6) .table-label {
    animation-delay: 0.35s;
}

.table-separator {
    padding: 25px 10px;
    text-align: center;
    color: #FF6B35;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-value {
    padding: 25px 25px;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    line-height: 1.6;
    animation: slideInRight 0.8s ease-out backwards;
}

.table-row:nth-child(1) .table-value {
    animation-delay: 0.12s;
}

.table-row:nth-child(2) .table-value {
    animation-delay: 0.17s;
}

.table-row:nth-child(3) .table-value {
    animation-delay: 0.22s;
}

.table-row:nth-child(4) .table-value {
    animation-delay: 0.27s;
}

.table-row:nth-child(5) .table-value {
    animation-delay: 0.32s;
}

.table-row:nth-child(6) .table-value {
    animation-delay: 0.37s;
}

/* ============================================
   REPRESENTATION SECTION
   ============================================ */

.representation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.representation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.representation-image {
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.representation-section .section-title {
    text-align: center;
    font-size: 48px;
    color: #000 !important;
    margin-bottom: 30px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out backwards;
}

.representation-section .section-title .highlight {
    color: #FF6B35;
}

.brand-logo-image {
    max-width: 70%;
    height: auto;
    border-radius: 25px;
    box-shadow:
        0 20px 60px rgba(0, 26, 77, 0.2),
        0 0 0 3px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.representation-image:hover .brand-logo-image {
    transform: scale(1.05) translateY(-10px);
    box-shadow:
        0 30px 80px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 107, 53, 0.6);
}

.image-badge {
    display: none;
}

.representation-intro {
    color: #000 !important;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out 0.25s backwards;
}

.brand-name {
    font-size: 32px;
    color: #001a4d;
    margin: 15px 0 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.brand-description {
    color: #000 !important;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 500;
    animation: slideInLeft 0.8s ease-out 0.35s backwards;
}

.brand-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 26, 77, 0.05));
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out backwards;
}

.highlight-badge:nth-child(1) {
    animation-delay: 0.4s;
}

.highlight-badge:nth-child(2) {
    animation-delay: 0.45s;
}

.highlight-badge:nth-child(3) {
    animation-delay: 0.5s;
}

.highlight-badge:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 26, 77, 0.1));
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.badge-icon {
    font-size: 24px;
    min-width: 30px;
    display: flex;
    align-items: center;
}

.badge-label {
    color: #001a4d;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.why-us-section .section-title {
    position: relative;
    z-index: 1;
    color: #1a472a;
    margin-bottom: 20px;
}

.why-us-section .section-subtitle {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FF6B35;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.why-us-image {
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.why-us-text {
    position: relative;
    z-index: 2;
}

.why-us-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 26, 77, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInRight 0.8s ease-out backwards;
}

.why-us-item:nth-child(1) {
    animation-delay: 0.2s;
}

.why-us-item:nth-child(2) {
    animation-delay: 0.25s;
}

.why-us-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-us-item:nth-child(4) {
    animation-delay: 0.35s;
}

.why-us-item:nth-child(5) {
    animation-delay: 0.4s;
}

.why-us-item:nth-child(6) {
    animation-delay: 0.45s;
}

.why-us-item:hover {
    transform: translateY(-10px) translateX(10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    border-radius: 12px;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.why-us-item:hover .list-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list-text {
    color: #001a4d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.list-description {
    color: #777;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.why-us-item:hover .list-description {
    color: #FF6B35;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5c3e 50%, #1f5336 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: floatingGradient 15s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: floatingGradient 20s ease-in-out infinite reverse;
}

.contact-title {
    color: white !important;
    font-size: 48px !important;
    text-align: center;
    margin-bottom: 20px !important;
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s ease-out backwards;
}

.contact-title .highlight {
    color: #FF6B35 !important;
}

.contact-subtitle {
    text-align: center;
    color: #FFD89B;
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    animation: slideInDown 0.8s ease-out 0.1s backwards;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.logo-contact {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.contact-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.2);
    animation: fadeInUp 0.8s ease-out 0.25s backwards;
}

.section-title-contact {
    display: none;
}

.company-name-contact {
    color: #FFD89B;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 0, 0.1));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out backwards;
}

.contact-item:nth-child(1) {
    animation-delay: 0.35s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.45s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.5s;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), transparent);
    transition: all 0.6s ease;
}

.contact-item:hover::before {
    top: 0;
    right: 0;
}

.contact-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 140, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(255, 140, 0, 0.15));
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.contact-item:nth-child(1) .contact-icon {
    animation-delay: 0s;
}

.contact-item:nth-child(2) .contact-icon {
    animation-delay: 0.5s;
}

.contact-item:nth-child(3) .contact-icon {
    animation-delay: 1s;
}

.contact-item:nth-child(4) .contact-icon {
    animation-delay: 1.5s;
}

.contact-label {
    color: #FFD89B;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-label {
    color: #FFFFFF;
}

.contact-value {
    color: #e8e8e8;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-value {
    color: #FFFFFF;
}

.contact-value a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.contact-value a:hover::after {
    width: 100%;
}

.contact-value a:hover {
    color: #FFD89B;
}

.contact-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease-out 0.2s backwards;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #001a4d 0%, #002d7a 50%, #001a4d 100%);
    color: #ccc;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section h3 {
    color: #FF6B35;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-section:hover h3 {
    color: #FFD89B;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-section p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
    transition: color 0.3s ease;
}

.footer-section:hover p {
    color: #ddd;
}

.footer-section a {
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section a:hover {
    color: #FFD89B;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    animation: slideInRight 0.8s ease-out backwards;
}

.footer-links li:nth-child(1) {
    animation-delay: 0.25s;
}

.footer-links li:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-links li:nth-child(3) {
    animation-delay: 0.35s;
}

.footer-links li:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    transform: translateX(5px);
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
    padding-left: 8px;
}

.certificates-section-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.certificates-title-footer {
    color: #FF6B35;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out 0.4s backwards;
}

.certificates-container-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s backwards;
}

.certificate-item-footer {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.1);
    animation: slideInUp 0.8s ease-out backwards;
}

.certificate-item-footer:nth-child(1) {
    animation-delay: 0.5s;
}

.certificate-item-footer:nth-child(2) {
    animation-delay: 0.55s;
}

.certificate-item-footer:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.cert-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a472a, #2d5c3e);
}

.certificate-image-footer {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 107, 53, 0.3);
    display: block;
    background: white;
    padding: 5px;
}

.certificate-item-footer:hover .certificate-image-footer {
    transform: scale(1.15);
    border-color: rgba(255, 107, 53, 0.8);
    filter: brightness(1.1);
}

.certificate-label-footer {
    color: #FF6B35;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 0;
}

.certificate-item-footer:hover .certificate-label-footer {
    color: #FFD89B;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.footer-bottom {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: #888;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.footer-credit {
    color: #777;
    font-size: 13px;
    margin-top: 12px;
    animation: fadeInUp 0.8s ease-out 0.65s backwards;
}

/* ============================================
   CERTIFICATE MODAL
   ============================================ */

.certificate-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.certificate-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px;
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 70px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.modal-close:hover {
    color: #FFD89B;
    background: rgba(255, 107, 53, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.modal-image {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid rgba(255, 107, 53, 0.4);
    margin-bottom: 25px;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-title {
    color: #FF6B35;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
    animation: slideInDown 0.5s ease 0.2s backwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #001a4d 0%, #002d7a 100%);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-bottom: 3px solid #FF6B35;
        animation: slideInDown 0.4s ease-out;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        color: #fff;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        display: block;
    }

    .nav-link::before {
        content: '▸';
        position: absolute;
        left: 15px;
        color: #FF6B35;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: linear-gradient(90deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
        padding-left: 25px;
        color: #FFD89B;
    }

    .nav-link.active {
        background: linear-gradient(90deg, rgba(255, 107, 53, 0.3) 0%, transparent 100%);
        color: #FF6B35;
        border-left: 4px solid #FF6B35;
        padding-left: 16px;
    }

    .hamburger {
        display: flex;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.two-column.reverse> :first-child {
        grid-column: 1;
    }

    .main-title {
        font-size: 36px;
    }

    .gallery-section-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-container {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    /* About Section Tablet */
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .offering-item {
        padding: 18px;
    }

    .offering-icon {
        font-size: 32px;
    }

    .offering-text h4 {
        font-size: 14px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-choose-title {
        font-size: 26px;
    }

    .mission-box {
        padding: 22px;
    }

    .mission-text {
        font-size: 15px;
    }

    /* Add Call Icon to Navigation */
    .nav-links::before {
        content: '☎';
        display: block;
        padding: 20px;
        text-align: center;
        font-size: 32px;
        color: #FF6B35;
        background: rgba(255, 107, 53, 0.1);
        border-bottom: 2px solid rgba(255, 107, 53, 0.2);
        animation: bounce 1s ease-in-out infinite;
    }

    /* Call Badge on Right Side */
    .nav-links::after {
        content: '📞 CALL\A+977-9851033927';
        white-space: pre;
        display: block;
        padding: 15px 20px;
        text-align: center;
        font-size: 13px;
        color: white;
        background: linear-gradient(135deg, #FF6B35, #FF8C4D);
        border-top: 2px solid rgba(255, 107, 53, 0.3);
        font-weight: 700;
        line-height: 1.6;
        box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }

    body {
        font-size: 12px;
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 4px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Header */
    .top-header-content {
        flex-direction: row;
        gap: 8px;
        text-align: center;
    }

    .header-container {
        height: 50px;
        padding: 0 8px;
    }

    .header-logo {
        height: 28px;
    }

    .company-name {
        font-size: 13px;
        font-weight: 700;
    }

    /* Sections */
    .section {
        padding: 30px 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow: hidden;
    }

    .section-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 18px !important;
        padding: 0 12px !important;
        line-height: 1.3;
    }

    .section-content {
        padding: 0 !important;
        margin: 0 !important;
        gap: 15px !important;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px !important;
        padding: 0 12px !important;
        color: #666;
    }

    /* Home Gallery */
    .hero-content {
        padding: 20px 8px !important;
        margin: 0 !important;
    }

    .main-title {
        font-size: 18px;
        font-weight: 700;
    }

    .home-gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100% !important;
        padding: 0 8px !important;
        margin: 0 !important;
        height: auto;
    }

    .home-gallery-item {
        height: 120px;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* About Section */
    .about-section {
        padding: 40px 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .text-container {
        width: 100% !important;
        padding: 0 14px !important;
        margin: 0 !important;
    }

    .about-header {
        margin: 0 0 20px 0 !important;
        padding: 15px 15px !important;
        background: linear-gradient(135deg, #001a4d 0%, #002d7a 100%) !important;
        border: none !important;
        border-radius: 9px;
        box-shadow: 0 4px 14px rgba(0, 26, 77, 0.15);
    }

    .company-heading {
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #fff !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        line-height: 1.3;
    }

    .company-subtitle {
        font-size: 13px !important;
        color: #FFD89B !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .about-intro {
        padding: 10px 8px !important;
        margin: 12px 0 12px 0 !important;
        border-left: 3px solid #FF6B35;
        background: rgba(255, 107, 53, 0.08);
        border-radius: 6px;
        box-sizing: border-box;
    }

    .about-intro p {
        font-size: 11px !important;
        line-height: 1.5;
        color: #000 !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .description {
        font-size: 11px !important;
        line-height: 1.5;
        color: #000 !important;
        font-weight: 600 !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    .offerings-title {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #001a4d !important;
        margin: 12px 0 8px 0 !important;
        padding: 0 !important;
    }

    .offerings-list {
        list-style: none;
        padding: 0 !important;
        margin: 0 0 12px 0 !important;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .offerings-list li {
        font-size: 11px !important;
        color: #000 !important;
        font-weight: 600 !important;
        margin: 0 0 0 20px !important;
        padding: 0 !important;
        position: relative;
        line-height: 1.4;
    }

    .offerings-list li::before {
        content: '✓';
        position: absolute;
        left: -15px;
        color: #FF6B35;
        font-weight: 700;
        font-size: 12px;
    }

    .quality-badge {
        padding: 14px 14px !important;
        margin: 10px 0 15px 0 !important;
        border-left: 4px solid #FF6B35 !important;
        background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%) !important;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
        transition: all 0.3s ease;
        width: 100% !important;
    }

    .quality-text {
        font-size: 13px !important;
        line-height: 1.7 !important;
        color: #001a4d !important;
        font-weight: 700 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-break: break-word;
    }

    .quality-text strong {
        color: #FF6B35;
        font-weight: 800;
        display: block;
        margin-bottom: 6px;
    }

    .section-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Vision & Mission */
    .vision-card {
        padding: 12px !important;
        margin: 0 0 12px 0 !important;
        background: rgba(255, 107, 53, 0.08);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
    }

    .vision-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }

    .vision-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Products */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100% !important;
        padding: 0 8px !important;
        margin: 0 !important;
    }

    .product-card {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.05);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
    }

    .product-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .product-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Leadership */
    .leader-card {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.05);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
        margin: 0 0 12px 0 !important;
    }

    .leader-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 4px 0 !important;
        padding: 0 !important;
    }

    .leader-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Facts Table */
    .facts-table {
        font-size: 10px;
        width: 100% !important;
        padding: 0 8px !important;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px !important;
        margin: 8px 0 !important;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 6px;
    }

    .table-label,
    .table-separator,
    .table-value {
        padding: 0 !important;
        font-size: 10px !important;
    }

    .table-separator {
        display: none;
    }

    /* Contact Section */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100% !important;
        padding: 0 8px !important;
        margin: 0 !important;
    }

    .contact-item {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.08);
        border-radius: 6px;
    }

    .contact-item h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .contact-item p {
        font-size: 11px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Footer */
    .footer-section {
        padding: 20px 8px !important;
    }

    .footer-section h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    .footer-section p {
        font-size: 10px !important;
        line-height: 1.5;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }

    .certificates-container {
        gap: 10px;
        justify-content: center;
    }

    .certificate-image {
        max-width: 80px;
    }

    /* Image Container */
    .image-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 8px !important;
    }

    /* Additional Style Enhancements */
    body {
        background: #f5f7fa;
    }

    .header-container {
        background: linear-gradient(135deg, #001a4d 0%, #002d7a 100%);
        box-shadow: 0 4px 12px rgba(0, 26, 77, 0.15);
    }

    .company-name {
        background: linear-gradient(135deg, #FF6B35, #FFD89B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        font-size: 14px;
    }

    .section {
        position: relative;
    }

    .section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #FF6B35, transparent);
    }

    .section-title {
        font-size: 20px;
        font-weight: 800;
        background: linear-gradient(135deg, #001a4d 0%, #FF6B35 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .about-section {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .about-header {
        padding: 15px 12px !important;
        background: linear-gradient(135deg, #001a4d 0%, #002d7a 100%) !important;
        border: none !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 26, 77, 0.1);
    }

    .company-heading {
        color: #fff !important;
        font-weight: 800 !important;
        font-size: 15px !important;
    }

    .company-subtitle {
        color: #FFD89B !important;
        font-weight: 600 !important;
        font-size: 12px !important;
    }

    .about-intro {
        padding: 12px 12px !important;
        border-left: 4px solid #FF6B35 !important;
        background: linear-gradient(135deg, #FF6B35 0%, rgba(255, 107, 53, 0.1) 100%) !important;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.12);
    }

    .about-intro p {
        font-size: 12px !important;
        line-height: 1.6;
        color: #001a4d !important;
        font-weight: 700 !important;
    }

    .description {
        font-size: 12px !important;
        line-height: 1.6;
        color: #001a4d !important;
        font-weight: 600 !important;
    }

    .offerings-list li {
        font-size: 12px !important;
        color: #001a4d !important;
        font-weight: 700 !important;
        margin-left: 24px !important;
        padding: 8px 10px 8px 0 !important;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    .offerings-list li:last-child {
        border-bottom: none;
    }

    .offerings-list li::before {
        content: '✓';
        left: 0;
        font-weight: 800;
        font-size: 14px;
    }

    .quality-badge {
        padding: 14px 14px !important;
        margin: 0 0 15px 0 !important;
        border-left: 4px solid #FF6B35 !important;
        background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%) !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
        transition: all 0.3s ease;
        box-sizing: border-box;
        width: 100% !important;
    }

    .quality-badge:hover {
        transform: translateX(4px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
    }

    .quality-text {
        font-size: 13px !important;
        line-height: 1.7 !important;
        color: #001a4d !important;
        font-weight: 700 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-break: break-word;
        word-wrap: break-word;
    }

    .quality-text strong {
        color: #FF6B35;
        font-weight: 800;
        display: block;
        margin-bottom: 6px;
    }

    .vision-card {
        padding: 15px 12px !important;
        background: linear-gradient(135deg, rgba(0, 26, 77, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%) !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 26, 77, 0.08);
        transition: all 0.3s ease;
    }

    .vision-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
        border-color: #FF6B35 !important;
    }

    .vision-card h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
    }

    .vision-card p {
        font-size: 12px !important;
        color: #001a4d !important;
        line-height: 1.6;
    }

    .product-card {
        padding: 15px 12px !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%) !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
        transition: all 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
        border-color: #FF6B35 !important;
    }

    .product-card h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
    }

    .product-card p {
        font-size: 11px !important;
        color: #001a4d !important;
    }

    .leader-card {
        padding: 15px 12px !important;
        background: linear-gradient(135deg, rgba(0, 26, 77, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%) !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 26, 77, 0.08);
        transition: all 0.3s ease;
    }

    .leader-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
        border-color: #FF6B35 !important;
    }

    .leader-card h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
    }

    .leader-card p {
        font-size: 11px !important;
        color: #001a4d !important;
    }

    .table-row {
        padding: 12px 12px !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 26, 77, 0.05) 100%) !important;
        border-left: 4px solid #FF6B35;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
        transition: all 0.3s ease;
    }

    .table-row:hover {
        transform: translateX(4px);
        box-shadow: 0 6px 18px rgba(255, 107, 53, 0.15);
    }

    .table-label,
    .table-separator,
    .table-value {
        font-size: 12px !important;
        font-weight: 700;
        color: #001a4d !important;
    }

    .why-us-item {
        padding: 14px 12px !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%) !important;
        border-left: 4px solid #FF6B35 !important;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.12);
        transition: all 0.3s ease;
    }

    .why-us-item:hover {
        transform: translateX(6px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.18);
    }

    .list-icon {
        font-size: 20px;
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, #FF6B35, #FFD89B);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .contact-item {
        padding: 14px 12px !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 26, 77, 0.05) 100%) !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
        border-color: #FF6B35 !important;
    }

    .contact-item h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
    }

    .contact-item p {
        font-size: 11px !important;
        color: #001a4d !important;
        line-height: 1.5;
    }

    .footer-section {
        padding: 25px 8px !important;
        border-top: 2px solid rgba(255, 107, 53, 0.2);
    }

    .footer-section h3 {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
    }

    .footer-section p {
        font-size: 11px !important;
        line-height: 1.6;
        color: #001a4d !important;
    }

    .footer-section ul {
        padding-left: 18px !important;
    }

    .footer-section li {
        font-size: 11px !important;
        color: #001a4d !important;
        font-weight: 600;
    }

    .certificate-image {
        max-width: 90px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 26, 77, 0.1);
        transition: all 0.3s ease;
    }

    .certificate-image:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(255, 107, 53, 0.2);
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto;
    }

    .home-gallery-item {
        height: 150px;
    }

    .section-content {
        gap: 30px;
    }

    .vision-card {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-us-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .certificates-container-footer {
        gap: 30px;
    }

    .modal-content {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .tagline-content {
        font-size: 14px;
        gap: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-title .highlight {
        display: block;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .image-container {
        order: -1;
    }

    .two-column.reverse .image-container {
        order: 2;
    }

    /* About Section */
    .about-intro {
        padding: 20px;
        margin-bottom: 20px;
    }

    .about-intro p {
        font-size: 14px;
    }

    .quality-badge {
        padding: 20px;
        margin: 20px 0;
    }

    .quality-text {
        font-size: 14px !important;
    }

    .offerings-list {
        padding-left: 20px;
    }

    .offerings-list li {
        margin-bottom: 12px;
        font-size: 14px;
    }

    /* Vision & Mission */
    .vision-card {
        padding: 25px;
    }

    .vision-description {
        font-size: 14px;
    }

    /* Products Section */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card p {
        font-size: 14px;
    }

    /* Leadership */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leader-card {
        padding: 25px;
    }

    .leader-designation {
        font-size: 14px;
    }

    /* Company Facts */
    .facts-table {
        font-size: 13px;
    }

    .table-row {
        grid-template-columns: 80px 15px 1fr;
        padding: 12px 10px;
    }

    .table-label,
    .table-value {
        padding: 10px 8px;
    }

    /* Why Choose Us */
    .why-us-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-item {
        padding: 20px;
    }

    .list-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }

    .list-text {
        font-size: 16px;
    }

    .list-description {
        font-size: 13px;
    }

    /* Contact Section */
    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .company-name-contact {
        font-size: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        font-size: 40px;
        width: 60px;
        height: 60px;
    }

    .contact-label {
        font-size: 16px;
    }

    .contact-value {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        padding: 50px 20px 30px;
        gap: 40px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .certificates-section-footer {
        padding: 40px 20px;
    }

    .certificates-title-footer {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .certificates-container-footer {
        gap: 25px;
    }

    .certificate-item-footer {
        padding: 15px;
    }

    .certificate-image-footer {
        width: 100px;
        height: 100px;
    }

    .certificate-label-footer {
        font-size: 14px;
        margin-top: 10px;
    }

    .modal-content {
        max-width: 90%;
        padding: 30px;
    }

    .modal-image {
        max-height: 400px;
    }

    .modal-title {
        font-size: 22px;
    }

    .corner-decoration {
        display: none;
    }
}

@media (max-width: 600px) {
    * {
        box-sizing: border-box;
    }

    body {
        font-size: 12px;
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 6px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Header */
    .tagline-header {
        padding: 10px 0;
    }

    .tagline-text {
        font-size: 11px !important;
        letter-spacing: 0.5px;
    }

    .top-header {
        padding: 8px 0;
    }

    .top-header-content {
        gap: 8px;
    }

    .top-header-left {
        display: none !important;
    }

    .top-header-right {
        display: none !important;
    }

    .social-icon {
        display: none !important;
    }

    .location-item {
        display: none !important;
    }

    .header-container {
        height: 55px;
        padding: 0 10px;
    }

    .header-logo {
        height: 32px;
    }

    .company-name {
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: 35px 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .section-title {
        font-size: 19px !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }

    .section-content {
        gap: 15px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Home */
    .hero-content {
        padding: 25px 10px !important;
    }

    .main-title {
        font-size: 19px;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
        height: auto;
    }

    .home-gallery-item {
        height: 125px;
        width: 100% !important;
    }

    /* About Section */
    .about-section {
        padding: 35px 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .text-container {
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }

    .about-header {
        margin: 0 0 12px 0 !important;
        padding: 0 0 12px 0 !important;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    }

    .company-heading {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #001a4d !important;
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .company-subtitle {
        font-size: 13px !important;
        color: #FFD89B !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .about-intro {
        padding: 15px 15px !important;
        margin: 18px 0 18px 0 !important;
        border-left: 4px solid #FF6B35 !important;
        background: linear-gradient(135deg, #FF6B35 0%, rgba(255, 107, 53, 0.1) 100%) !important;
        border-radius: 8px;
        box-sizing: border-box;
        box-shadow: 0 4px 14px rgba(255, 107, 53, 0.16);
    }

    .about-intro p {
        font-size: 15px !important;
        line-height: 1.7;
        color: #001a4d !important;
        font-weight: 700 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .description {
        font-size: 15px !important;
        line-height: 1.8;
        color: #333 !important;
        font-weight: 600 !important;
        margin: 0 0 16px 0 !important;
        padding: 0 !important;
    }

    .offerings-title {
        font-size: 16px !important;
        font-weight: 800 !important;
        color: #001a4d !important;
        margin: 18px 0 14px 0 !important;
        padding: 0 !important;
    }

    .offerings-list {
        list-style: none;
        padding: 0 !important;
        margin: 0 0 16px 0 !important;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .offerings-list li {
        font-size: 14px !important;
        color: #001a4d !important;
        font-weight: 600 !important;
        margin: 0 0 0 18px !important;
        padding: 0 !important;
        position: relative;
        line-height: 1.4;
    }

    .offerings-list li::before {
        content: '✓';
        position: absolute;
        left: -15px;
        color: #FF6B35;
        font-weight: 700;
        font-size: 12px;
    }

    .quality-badge {
        padding: 10px 8px !important;
        margin: 10px 0 10px 0 !important;
        border-left: 3px solid #FF6B35;
        background: #fff8f3;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .quality-text {
        font-size: 11px !important;
        line-height: 1.5 !important;
        color: #000 !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .quality-text strong {
        color: #FF6B35;
    }

    .section-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        margin: 0 !important;
        padding: 0 10px !important;
        display: block;
    }

    .image-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Vision & Mission */
    .vision-card {
        padding: 12px !important;
        margin: 0 0 12px 0 !important;
        background: rgba(255, 107, 53, 0.08);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
    }

    .vision-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }

    .vision-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Products */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }

    .product-card {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.05);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
    }

    .product-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .product-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Leadership */
    .leader-card {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.05);
        border: 2px solid rgba(255, 107, 53, 0.2);
        border-radius: 8px;
        margin: 0 0 12px 0 !important;
    }

    .leader-card h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 4px 0 !important;
        padding: 0 !important;
    }

    .leader-card p {
        font-size: 11px !important;
        line-height: 1.5;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Company Facts */
    .facts-table {
        font-size: 11px;
        width: 100% !important;
        padding: 0 10px !important;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px !important;
        margin: 8px 0 !important;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 6px;
    }

    .table-label,
    .table-separator,
    .table-value {
        font-size: 11px !important;
        padding: 0 !important;
    }

    .table-separator {
        display: none;
    }

    /* Why Choose Us */
    .why-us-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100% !important;
        padding: 0 10px !important;
    }

    .why-us-item {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.08);
        border-radius: 6px;
    }

    .list-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }

    .why-us-item h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
    }

    .why-us-item p {
        font-size: 11px !important;
        margin: 0 !important;
    }

    /* Contact */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }

    .contact-item {
        padding: 12px !important;
        background: rgba(255, 107, 53, 0.08);
        border-radius: 6px;
    }

    .contact-item h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
        padding: 0 !important;
    }

    .contact-item p {
        font-size: 11px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Footer */
    .footer-section {
        padding: 20px 10px !important;
    }

    .footer-section h3 {
        font-size: 12px !important;
        font-weight: 700 !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    .footer-section p {
        font-size: 10px !important;
        line-height: 1.5;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }

    .footer-section ul {
        padding-left: 15px !important;
    }

    .footer-section li {
        font-size: 10px !important;
        margin-bottom: 6px !important;
    }

    .certificates-container {
        gap: 10px;
        justify-content: center;
    }

    .certificate-image {
        max-width: 85px;
    }
}

.table-row:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.15) 0%, transparent 100%);
    transform: translateX(5px);
}

/* Representation */
.representation-image {
    max-width: 80%;
    animation: zoomIn 0.8s ease-out 0.2s backwards;
}

/* Why Choose Us */
.why-us-list {
    gap: 12px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.why-us-item {
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 26, 77, 0.08) 100%);
    border-left: 3px solid #FF6B35;
    border-radius: 8px;
    animation: slideInLeft 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.list-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #FFD89B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s ease-in-out infinite;
}

/* Contact */
.company-name-contact {
    font-size: 16px;
    background: linear-gradient(135deg, #001a4d 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInDown 0.8s ease-out 0.2s backwards;
}

.contact-grid {
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contact-item {
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 26, 77, 0.08) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out backwards;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #FFD89B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 0.8s ease-in-out infinite;
}

/* Footer */
.footer-section {
    animation: slideInUp 0.8s ease-out backwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.15s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.certificates-item-footer {
    animation: slideInUp 0.8s ease-out backwards;
}

.certificates-item-footer:nth-of-type(1) {
    animation-delay: 0.25s;
}

.certificates-item-footer:nth-of-type(2) {
    animation-delay: 0.3s;
}

/* Modal */
.modal-content {
    max-width: 95%;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-image {
    max-height: 350px;
    margin-bottom: 15px;
    border-radius: 12px;
    animation: zoomIn 0.5s ease;
}

.modal-title {
    font-size: 18px;
    animation: slideInDown 0.5s ease 0.2s backwards;
}
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .container {
        padding: 0 8px;
        max-width: 100%;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .tagline-content {
        font-size: 10px;
    }

    .top-header {
        padding: 8px 0;
        position: relative;
    }

    .top-header-left {
        display: none !important;
        gap: 3px;
    }

    .top-contact-item {
        padding: 5px 6px;
        font-size: 9px !important;
        border-radius: 12px;
        background: rgba(255, 107, 53, 0.25);
    }

    .top-header-right {
        display: none !important;
    }

    .social-icon {
        display: none !important;
    }

    .section-title {
        font-size: 20px;
    }

    .section-content {
        gap: 20px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 20px;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: 100%;
    }

    .home-gallery-item {
        height: 200px;
        border-radius: 8px;
    }

    .home-gallery-item:nth-child(2),
    .home-gallery-item:nth-child(3),
    .home-gallery-item:nth-child(4) {
        display: none;
    }

    .home-gallery-item:nth-child(1) {
        display: block;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .about-header .company-heading {
        font-size: 16px;
    }

    .company-subtitle {
        font-size: 11px;
    }

    .about-intro {
        padding: 12px;
        margin-bottom: 12px;
        border-left: 3px solid #FF6B35;
    }

    .about-intro p {
        font-size: 12px;
        line-height: 1.6;
    }

    .offerings-list li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .quality-badge {
        padding: 12px;
        margin: 12px 0;
        border-left: 3px solid #FF6B35;
    }

    .quality-text {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    .products-grid {
        gap: 12px;
    }

    .leadership-grid {
        gap: 20px;
    }

    .why-us-list {
        gap: 12px;
    }

    .why-us-item {
        padding: 12px;
    }

    .list-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .contact-grid {
        gap: 15px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }

    .certificates-container-footer {
        gap: 12px;
    }

    .certificate-item-footer {
        padding: 10px;
    }

    .certificate-image-footer {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   ENHANCED ABOUT SECTION STYLES
   ============================================ */

.text-center {
    text-align: center;
}

.about-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FF6B35;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-header .company-heading {
    margin: 0 0 10px 0;
}

.about-intro {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 26, 77, 0.08) 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 5px solid #FF6B35;
    animation: slideInLeft 0.8s ease-out 0.25s backwards;
}

.about-intro p {
    color: #000 !important;
    font-weight: 700 !important;
}

.highlight-text {
    color: #FF6B35;
    font-weight: 700;
    font-size: 17px !important;
    line-height: 2 !important;
}

.icon-bullet {
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
}

.offerings-list li:nth-child(1) .icon-bullet {
    animation-delay: 0s;
}

.offerings-list li:nth-child(2) .icon-bullet {
    animation-delay: 0.2s;
}

.offerings-list li:nth-child(3) .icon-bullet {
    animation-delay: 0.4s;
}

.offerings-list li:nth-child(4) .icon-bullet {
    animation-delay: 0.6s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.quality-badge {
    background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-right: 5px solid #FF6B35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    animation: slideInRight 0.8s ease-out 0.5s backwards;
    transition: all 0.3s ease;
}

.quality-badge:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.quality-text {
    color: #000 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

.quality-text strong {
    color: #FF6B35;
    font-weight: 700;
}

.leadership-text {
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #001a4d;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    transition: all 0.3s ease;
    color: #000 !important;
    font-weight: 700 !important;
}

.leadership-text:hover {
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    padding-left: 25px;
}

.leadership-text strong {
    color: #001a4d;
    font-weight: 700;
}

/* ============================================
   CORE PRODUCTS SECTION
   ============================================ */

.core-products-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.core-products-section .section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.core-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 26, 77, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    background: white;
    padding: 10px;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 26, 77, 0.95), rgba(0, 26, 77, 0.5));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    min-height: 80px;
    justify-content: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-name {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Tablet Responsive - Core Products */
@media (max-width: 1024px) {
    .core-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
}

/* Medium Tablets - Core Products */
@media (max-width: 768px) {
    .core-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 8px;
    }

    .core-products-section {
        padding: 40px 0;
    }

    .core-products-section .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .core-products-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image-wrapper {
        padding-bottom: 120%;
    }

    .product-name {
        font-size: 13px;
        font-weight: 600;
    }

    .product-overlay {
        min-height: 65px;
        padding: 15px;
    }
}

/* Small Phones - Core Products */
@media (max-width: 640px) {
    .core-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 6px;
    }

    .core-products-section {
        padding: 35px 0;
    }

    .core-products-section .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .core-products-section .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
        padding: 0 12px;
    }

    .product-card {
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 26, 77, 0.08);
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.15);
    }

    .product-image-wrapper {
        padding-bottom: 110%;
    }

    .product-image {
        object-fit: cover;
    }

    .product-name {
        font-size: 11px;
        font-weight: 700;
        line-height: 1.3;
    }

    .product-overlay {
        padding: 12px;
        min-height: 55px;
        background: linear-gradient(to top, rgba(0, 26, 77, 0.96), rgba(0, 26, 77, 0.5));
    }
}

/* Extra Small Phones - Core Products */
@media (max-width: 480px) {
    .core-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 4px;
    }

    .core-products-section {
        padding: 30px 0;
    }

    .core-products-section .section-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .core-products-section .section-subtitle {
        font-size: 12px;
        margin-bottom: 22px;
        padding: 0 8px;
    }

    .product-card {
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 26, 77, 0.06);
    }

    .product-card:hover {
        transform: translateY(-3px);
    }

    .product-image-wrapper {
        padding-bottom: 110%;
    }

    .product-name {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .product-overlay {
        padding: 10px;
        min-height: 50px;
        background: linear-gradient(to top, rgba(0, 26, 77, 0.97), rgba(0, 26, 77, 0.4));
    }

    /* About Section Mobile */
    .about-hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offering-item {
        padding: 16px;
    }

    .offering-icon {
        font-size: 28px;
        min-width: 40px;
    }

    .offering-text h4 {
        font-size: 14px;
    }

    .offering-text p {
        font-size: 12px;
    }

    .quality-badge {
        padding: 16px;
        gap: 12px;
    }

    .quality-icon {
        font-size: 28px;
        min-width: 40px;
    }

    .quality-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .quality-content p {
        font-size: 13px;
    }

    .leadership-highlight {
        padding: 16px;
        gap: 12px;
    }

    .leadership-icon {
        font-size: 28px;
        min-width: 40px;
    }

    .leadership-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .leadership-content p {
        font-size: 13px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-choose-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .why-choose-item {
        padding: 18px;
    }

    .why-choose-check {
        font-size: 24px;
        min-width: 35px;
    }

    .why-choose-text h4 {
        font-size: 14px;
    }

    .why-choose-text p {
        font-size: 12px;
    }

    .mission-box {
        padding: 18px;
    }

    .mission-text {
        font-size: 15px;
    }
}