/*
Theme Name: OM Electronics
Theme URI: https://omelectronicspcb.com/
Author: Rajneesh Singh
Description: Custom HTML-to-WordPress theme for OM Electronics PCB Company.
Version: 1.0
*/


/* ============================================
   SECTION: GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f7A416;
    --secondary-color: #F2295B;
  }

body {
    color: #333;
    padding-top: 104px;
}

/* logo css */
 .logo-size {
    max-width: 250px;
    width: 100%;
    height: auto;
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* button css */
#quotation {
  background: linear-gradient(to right, #F7A416, #F2295B);
  color: white;
  padding: 7px 25px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 19px;
  z-index: 1;
  transition: color 0.4s ease;
}

#quotation:hover {
  color: white;
}

#quotation::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F7A416, #F2295B);
  transition: left 0.5s ease;
  z-index: -1;
  border-radius: 19px;
}

#quotation:hover::before {
  left: 0;
  background: linear-gradient(to right, #1668FF, #F2295B);
}

/* header font size */
  /* Default font size for all screen sizes */
  .slider-header-pop {
    font-size: 36px!important;
  }

/* Bootstrap Primary Color Override */
.btn-primary, .bg-primary, .border-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* Icon colors - override text-primary for icons only */
i.text-primary, .text-primary i {
    color: #f7A416 !important;
    background: transparent !important;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* ============================================
   END SECTION: GLOBAL STYLES
   ============================================ */

/* ============================================
   SECTION: TOP BAR
   ============================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px;
    background-color: #000910;
    display: flex;
    align-items: center;
}

/* iPad Mini and Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    body {
        padding-top: 104px; /* 40px top bar + 64px navbar */
    }
    
    .top-bar {
        height: 40px;
        min-height: 40px;
    }
    
    .navbar-custom {
        top: 40px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 114px; /* 50px top bar + 64px navbar */
    }
    
    .top-bar {
        height: auto;
        min-height: 50px;
    }
}

.top-bar a {
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: #f7A416 !important;
    transform: translateY(-2px);
}

.top-bar small a {
  font-size: 0.875rem;
}
/* ============================================
   END SECTION: TOP BAR
   ============================================ */

/* ============================================
   SECTION: NAVIGATION
   ============================================ */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1029;
    background-color: #000910 !important;
}

.navbar-custom {
    top: 40px;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

/* iPad Mini and Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-custom {
        top: 40px;
    }
}

@media (max-width: 767px) {
    .navbar-custom {
        top: 65px;
    }
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7A416 !important;
}

/* Navbar Toggler Icon - White Color with Cool Animation */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 6px 10px;
    transition: all 0.25s ease-out;
    position: relative;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.navbar-toggler:hover {
    border-color: #f7A416;
    background: rgba(247, 164, 22, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(247, 164, 22, 0.3);
    border-color: #f7A416;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 26px;
    height: 26px;
    transition: all 0.25s ease-out;
    position: relative;
}

/* Hamburger to X Animation */
.navbar-toggler[aria-expanded='true'] {
    border-color: #f7A416;
    background: rgba(247, 164, 22, 0.15);
    transform: rotate(180deg);
    box-shadow: 0 0 15px rgba(247, 164, 22, 0.5),
                0 0 30px rgba(247, 164, 22, 0.3),
                0 0 45px rgba(247, 164, 22, 0.2),
                inset 0 0 10px rgba(247, 164, 22, 0.1);
    animation: xIconGlow 2s ease-in-out infinite;
    transition: all 0.25s ease-out, box-shadow 0.3s ease-out;
}

.navbar-toggler[aria-expanded='true']::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid rgba(247, 164, 22, 0.6);
    transform: translate(-50%, -50%);
    animation: glowRing 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.navbar-toggler[aria-expanded='true']::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 164, 22, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowAura 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -2;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(247, 164, 22, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    transform: rotate(180deg);
    filter: drop-shadow(0 0 8px rgba(247, 164, 22, 0.8))
            drop-shadow(0 0 15px rgba(247, 164, 22, 0.6))
            drop-shadow(0 0 25px rgba(247, 164, 22, 0.4));
    animation: iconPulse 2s ease-in-out infinite;
}

/* Glow animation for X icon button */
@keyframes xIconGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(247, 164, 22, 0.5),
                    0 0 30px rgba(247, 164, 22, 0.3),
                    0 0 45px rgba(247, 164, 22, 0.2),
                    inset 0 0 10px rgba(247, 164, 22, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(247, 164, 22, 0.7),
                    0 0 50px rgba(247, 164, 22, 0.5),
                    0 0 75px rgba(247, 164, 22, 0.3),
                    inset 0 0 15px rgba(247, 164, 22, 0.2);
    }
}

/* Glowing ring animation */
@keyframes glowRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        border-color: rgba(247, 164, 22, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
        border-color: rgba(247, 164, 22, 0.9);
    }
}

/* Glowing aura animation */
@keyframes glowAura {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Icon pulse animation */
@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(247, 164, 22, 0.8))
                drop-shadow(0 0 15px rgba(247, 164, 22, 0.6))
                drop-shadow(0 0 25px rgba(247, 164, 22, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(247, 164, 22, 1))
                drop-shadow(0 0 25px rgba(247, 164, 22, 0.8))
                drop-shadow(0 0 40px rgba(247, 164, 22, 0.6));
    }
}

/* Mobile Menu Overlay - Synchronized with navbar */
:root {
    --menu-transition-duration: 0.25s;
    --menu-transition-timing: ease-out;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 9, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1028;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--menu-transition-duration) var(--menu-transition-timing) 0s, 
                visibility var(--menu-transition-duration) var(--menu-transition-timing) 0s;
    pointer-events: none;
    will-change: opacity, visibility;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity var(--menu-transition-duration) var(--menu-transition-timing) 0s, 
                visibility var(--menu-transition-duration) var(--menu-transition-timing) 0s;
}

/* Cool Mobile Menu Animation - Slide from Left - Synchronized with overlay */
@media (max-width: 991.98px) {
.navbar-collapse {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(0, 9, 16, 0.98) 0%, rgba(15, 25, 35, 0.98) 100%);
        backdrop-filter: blur(20px);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        transition: left var(--menu-transition-duration) var(--menu-transition-timing) 0s !important;
        z-index: 1029;
        padding: 120px 30px 30px;
        overflow-y: auto;
        border-right: 2px solid rgba(247, 164, 22, 0.3);
        opacity: 1;
        will-change: left;
        display: block !important;
}

.navbar-collapse.show {
        left: 0 !important;
        transition: left var(--menu-transition-duration) var(--menu-transition-timing) 0s !important;
    }

    .navbar-collapse.collapsing {
        left: 0 !important;
        height: 100vh !important;
        transition: left var(--menu-transition-duration) var(--menu-transition-timing) 0s !important;
        display: block !important;
}

    /* Force exact timing match with overlay */
    .navbar-collapse:not(.show):not(.collapsing) {
        left: -100% !important;
    }

    /* Reset nav items when menu is closing */
    .navbar-collapse.collapsing .nav-item,
    .navbar-collapse:not(.show) .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    }
    
    /* Prevent Bootstrap's default collapse animation from interfering */
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        transition-property: left !important;
        transition-duration: 0 !important;
        transition-timing-function: ease-out !important;
    }

    /* Logo stays visible when menu is open */
    .navbar-brand {
        position: relative;
        z-index: 1031;
        transition: all 0.3s ease;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-collapse.show ~ .container .navbar-brand,
    .navbar-collapse.showing ~ .container .navbar-brand,
    .navbar-collapse.show ~ .navbar-brand,
    .navbar-collapse.showing ~ .navbar-brand {
        opacity: 1 !important;
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(247, 164, 22, 0.6));
    }
    
    /* Ensure navbar container keeps logo visible */
    .navbar .container {
        position: relative;
        z-index: 1030;
    }

    /* Mobile Menu Nav Items */
.navbar-nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.2s ease-out 0.1s, transform 0.2s ease-out 0.1s;
}

.navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
}

.navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.05s;
}

.navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.08s;
}

.navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.11s;
}

.navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.14s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.17s;
}

    /* Mobile Menu Links Styling */
    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: all 0.25s ease-out;
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        border-right: 3px solid transparent;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(247, 164, 22, 0.1), transparent);
        transition: right 0.3s ease;
    }

    .navbar-nav .nav-link:hover::before {
        right: 100%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #f7A416 !important;
        background: rgba(247, 164, 22, 0.1);
        border-right-color: #f7A416;
        transform: translateX(-5px);
        box-shadow: 0 5px 15px rgba(247, 164, 22, 0.2);
    }

    /* Mobile Menu Button Styling */
    .navbar-nav .btn {
        margin-top: 20px;
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-radius: 10px;
        background: linear-gradient(135deg, #f7A416 0%, #ff8c00 100%);
        border: none;
        box-shadow: 0 5px 20px rgba(247, 164, 22, 0.3);
        transition: all 0.3s ease;
    }

    .navbar-nav .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(247, 164, 22, 0.4);
    }

    /* Close button effect */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(247, 164, 22, 0.1);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show::before {
        opacity: 1;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.8;
    }
}
}
/* ============================================
   END SECTION: NAVIGATION
   ============================================ */

/* ============================================
   SECTION: DESKTOP MENU
   ============================================ */
@media (min-width: 992px) {
    .navbar-collapse {
        transition: all 0.3s ease;
    }

    .navbar-nav {
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link {
        transition: color 0.3s ease;
    }
}
/* ============================================
   END SECTION: DESKTOP MENU
   ============================================ */

/* ============================================
   SECTION: HERO/SLIDER SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    color: white;
    padding: 100px 0;
}

.hero-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

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

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

/* Slider Section - Cool Design */
.slider-section {
    background-color: #000910;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.slider-section .carousel-inner {
    position: relative;
    min-height: 600px;
}

/* Main Slider Specific - Keep 600px height */
#imageSlider.carousel-fade .carousel-item {
    min-height: 600px;
}

#imageSlider.carousel-fade .carousel-item.active {
    min-height: 600px;
}

#imageSlider .carousel-inner {
    min-height: 600px;
}

.slider-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f8f7e8;
    z-index: 1;
}

/* .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.9) 0%, rgba(242, 41, 91, 0.9) 100%);
    z-index: 1;
} */

.bg-slider {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
     background-image: url(../img/homesliderbg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.carousel-item {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-item .container {
    position: relative;
    z-index: 2;
}

/* Carousel Fade Effect - Override Bootstrap default */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.carousel-fade .carousel-item-next:not(.carousel-item-start),
.carousel-fade .carousel-item-prev:not(.carousel-item-end) {
    opacity: 0;
    z-index: 0;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
    z-index: 0;
}


.slider-content-animate {
    position: relative;
}

.slider-header-pop {
    opacity: 0;
}

.carousel-item.active .slider-header-pop {
    animation: popUp 0.8s ease-out;
    opacity: 1;
}

.carousel-item:not(.active) .slider-header-pop {
    opacity: 0;
    animation: none;
}

.slider-subheader-fly {
    opacity: 0;
}

.carousel-item.active .slider-subheader-fly {
    animation: flyIn 0.8s ease-out 0.2s both;
    opacity: 1;
}

.carousel-item:not(.active) .slider-subheader-fly {
    opacity: 0;
    animation: none;
}

.slider-text-slide {
    opacity: 0;
}

.carousel-item.active .slider-text-slide {
    animation: slideIn 0.8s ease-out 0.4s both;
    opacity: 1;
}

.carousel-item:not(.active) .slider-text-slide {
    opacity: 0;
    animation: none;
}

.slider-text-slide li {
    /* border-left: 3px solid rgba(255, 255, 255, 0.5); */
    border-left: 3px solid #F65D11;
    padding-left: 12px;
}

.slider-text-slide.btn,
button.slider-text-slide {
    width: 30%;
}

.slider-image-wrapper {
    position: relative;
    opacity: 0;
}

.carousel-item.active .slider-image-wrapper {
    animation: slideUp 0.8s ease-out;
    opacity: 1;
}

.carousel-item:not(.active) .slider-image-wrapper {
    opacity: 0;
    animation: none;
}

.slider-image {
    width: 640px;
    height: 370px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* .slider-image:hover {
    transform: scale(1.05);
} */

@keyframes popUp {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    50% {
        transform: scale(1.1) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes flyIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
    }
    to {
        transform: translateY(0);
    }
}

/* Slider Indicator Bar - 3 Small Progress Bars */
.slider-indicator-container {
    z-index: 10;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 0.5rem !important;
    width: auto;
}

.slider-indicator-bar {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 5px 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-segment {
    width: 35px;
    height: 2.5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-segment.active {
    background-color: rgba(255, 255, 255, 0.5);
    height: 3px;
}

.slider-segment:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scaleY(1.5);
    transition: all 0.2s ease;
}

.slider-segment-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 50px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(247, 164, 22, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(247, 164, 22, 0.5);
    }
}

.features-title {
    font-weight: 800;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleSlide 1s ease-out;
    position: relative;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes circlePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.7;
    }
}

.features-subtitle {
    color: #666;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Feature Yellow Box */
.feature-yellow-box {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 4px solid #f7A416;
    border-radius: 10px;
    top: 10px;
    left: 10px;
    z-index: 0;
    background: transparent;
    animation: slowBounce 3s ease-in-out infinite;
    pointer-events: none;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
    padding: 2rem;
}

/* Modern Services Section */
.we-serve-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.we-serve-section h2.display-4 {
    font-weight: 800;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.we-serve-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 164, 22, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(242, 41, 91, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.we-serve-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Moving border around the card */
.we-serve-card::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    border-radius: 2px;
    z-index: 10;
    animation: cardBorderMove 8s linear infinite;
    box-shadow: 0 0 20px rgba(247, 164, 22, 1), 0 0 30px rgba(242, 41, 91, 0.6);
    pointer-events: none;
    top: -2px;
    left: -2px;
}

@keyframes cardBorderMove {
    /* Top edge - left to right (accounting for 20px border-radius) */
    0% {
        top: -2px;
        left: 18px;
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
    20% {
        top: -2px;
        left: calc(100% - 78px);
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
    /* Corner transition - top right (following the curve) */
    21% {
        top: -2px;
        left: calc(100% - 22px);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    22% {
        top: 18px;
        left: calc(100% - 2px);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    /* Right edge - top to bottom */
    23% {
        top: 18px;
        left: calc(100% - 2px);
        width: 4px;
        height: 60px;
        transform: rotate(0deg);
    }
    45% {
        top: calc(100% - 78px);
        left: calc(100% - 2px);
        width: 4px;
        height: 60px;
        transform: rotate(0deg);
    }
    /* Corner transition - bottom right (following the curve) */
    46% {
        top: calc(100% - 22px);
        left: calc(100% - 2px);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    47% {
        top: calc(100% - 2px);
        left: calc(100% - 22px);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    /* Bottom edge - right to left */
    48% {
        top: calc(100% - 2px);
        left: calc(100% - 78px);
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
    70% {
        top: calc(100% - 2px);
        left: 18px;
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
    /* Corner transition - bottom left (following the curve) */
    71% {
        top: calc(100% - 2px);
        left: 18px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    72% {
        top: calc(100% - 22px);
        left: -2px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    /* Left edge - bottom to top */
    73% {
        top: calc(100% - 78px);
        left: -2px;
        width: 4px;
        height: 60px;
        transform: rotate(0deg);
    }
    95% {
        top: 18px;
        left: -2px;
        width: 4px;
        height: 60px;
        transform: rotate(0deg);
    }
    /* Corner transition - top left (following the curve) */
    96% {
        top: 18px;
        left: -2px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    97% {
        top: -2px;
        left: 18px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: rotate(0deg);
    }
    98% {
        top: -2px;
        left: 18px;
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
    100% {
        top: -2px;
        left: 18px;
        width: 60px;
        height: 4px;
        transform: rotate(0deg);
    }
}

.we-serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(247, 164, 22, 0.3);
}

.service-image-box {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.95) 0%, rgba(242, 41, 91, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.we-serve-card:hover .service-image-box {
    transform: rotateY(180deg);
}

.we-serve-card:hover .service-image-box img {
    transform: rotateY(180deg);
}

.we-serve-card:hover .service-overlay {
    transform: rotateY(0deg);
}

.service-content {
    text-align: center;
    color: white;
    padding: 30px;
    transform: translateZ(50px) scale(0.8) rotateY(180deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
    transform-style: preserve-3d;
}

.we-serve-card:hover .service-content {
    transform: translateZ(50px) scale(1) rotateY(180deg);
    opacity: 1;
}

.service-content i {
    color: white;
    margin-bottom: 15px;
    display: block;
    transform: rotateY(180deg) scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.we-serve-card:hover .service-content i {
    transform: rotateY(0deg) scale(1);
    animation: iconFloat 3s ease-in-out infinite 0.9s;
}

.service-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
}

.we-serve-card:hover .service-content h4 {
    transform: translateY(0);
    opacity: 1;
}

.service-content p {
    line-height: 1.6;
    opacity: 0.95;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}

.we-serve-card:hover .service-content p {
    transform: translateY(0);
    opacity: 0.95;
}

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

/* Color Box - Using Bootstrap classes, transition in custom CSS */
#colorBox {
    transition: background-color 0.3s ease;
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F2295B 0%, #f7A416 100%);
}

/* Form Styles */
.form-control {
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(247, 164, 22, 0.25);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Counter Animation */
#counter {
    transition: transform 0.3s ease;
}

#counter.animate {
    transform: scale(1.2);
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================
   END SECTION: HERO/SLIDER SECTION
   ============================================ */

/* ============================================
   SECTION: ABOUT US SECTION
   ============================================ */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    min-height: 00px;
}

/* Liquid Animation */
.liquid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.liquid-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: liquidMove 20s infinite ease-in-out;
}

.liquid-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.liquid-shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #F2295B 0%, #f7A416 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.liquid-shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes liquidMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    animation: fadeInUp 0.8s ease-out;
    display: inline-block;
}

.about-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #333;
}

.about-text {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: #666;
}

.about-features {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.feature-item:hover {
    transform: translateX(10px);
    background-color: rgba(247, 164, 22, 0.05);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon i {
    color: #f7A416;
    transition: color 0.3s ease;
}

.feature-icon:hover i {
    color: #F2295B;
}

.about-items-block {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-bordered-item {
    border: 3px solid rgba(247, 164, 22, 0.3);
    border-radius: 15px;
    padding: 0px 10px;
    text-align: left;
    background: white;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-bordered-item:nth-child(1) {
    animation-delay: 0.2s;
}

.about-bordered-item:nth-child(2) {
    animation-delay: 0.4s;
}

.about-bordered-item:nth-child(3) {
    animation-delay: 0.6s;
}

.about-bordered-item:nth-child(4) {
    animation-delay: 0.8s;
}

.about-bordered-item:nth-child(5) {
    animation-delay: 1s;
}

.about-bordered-item:hover {
    border-color: rgba(247, 164, 22, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 164, 22, 0.2);
}

.about-bordered-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #f7A416;
    transition: color 0.3s ease;
}

.about-bordered-item:hover i {
    color: #F2295B;
}

.about-bordered-item span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}
/* ============================================
   END SECTION: ABOUT US SECTION
   ============================================ */

/* ============================================
   SECTION: STATS SECTION
   ============================================ */
.stats-section {
    background: #f8f9fa;
    color: #333;
    min-height: 500px;
    position: relative;
}

/* World Map Background */
.stats-world-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/worldmap.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

/* Stats Header */
.stats-header {
    position: relative;
    z-index: 2;
    padding: 0px 0 20px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(247, 164, 22, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(247, 164, 22, 0.5);
    }
}

.stats-title {
    font-weight: 800;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleSlide 1s ease-out;
    position: relative;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-underline {
    width: 100px;
    height: 4px;
   
    margin: 0 auto 20px;
    border-radius: 2px;
    position: relative;
    animation: underlineExpand 1s ease-out 0.5s both;
    background: none; /* Remove the initial background to let gradient flow work independently */
}

.stats-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #F7A416, #F2295B, #1668FF, #F2295B);
    background-size: 200% 100%;
    animation: animateLineRightToLeft 3s ease-in-out infinite;
    z-index: 0; /* Put gradient behind the underline */
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes animateLineRightToLeft {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.stats-subtitle {
    color: #666;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stats-yellow-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f7A416;
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 1;
    background: transparent;
    animation: slowBounce 3s ease-in-out infinite;
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    margin-right: -50px;
    animation: fadeInLeft 0.8s ease-out, slowBounce 3s ease-in-out infinite;
}

.stat-item {
    text-align: left;
    animation: fadeInUp 0.8s ease-out both;
    padding: 15px 0;
    border-bottom: 2px solid rgba(247, 164, 22, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.8s;
}

.stat-item h3 {
    line-height: 1;
    color: #f7A416;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
}

/* Stats Image with Liquid Strips */
.stats-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease-out;
}

.stats-image {
    width: 100%;
    height: auto;
    display: block;
}
/* ============================================
   END SECTION: STATS SECTION
   ============================================ */

/* ============================================
   SECTION: PCB MANUFACTURING CONTENT SECTION
   ============================================ */
.pcb-manufacturing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    min-height: 500px;
    padding: 80px 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.pcb-manufacturing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(247, 164, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 41, 91, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    animation: pulseBg 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseBg {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.pcb-manufacturing-section .container {
    position: relative;
    z-index: 2;
}

.pcb-manufacturing-section .row {
    position: relative;
}

.pcb-manufacturing-section .col-lg-6,
.pcb-manufacturing-section .col-md-6 {
    position: relative;
    z-index: 1;
}

/* Animated Content Header */
.pcb-manufacturing-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.pcb-manufacturing-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.pcb-manufacturing-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.4s both;
}

.pcb-manufacturing-subtitle {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* New Content Item Design */
.pcb-manufacturing-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    isolation: isolate;
    will-change: transform;
}

.pcb-manufacturing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.pcb-manufacturing-item:hover::before {
    left: 100%;
}

/* Glow Effect */
.content-item-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 164, 22, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
    pointer-events: none;
    will-change: width, height, opacity;
}

.pcb-manufacturing-item:hover .content-item-glow {
    width: 300px;
    height: 300px;
    opacity: 0.6;
}

/* Animated Border */
.content-item-border-animated {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(45deg, #f7A416, #F2295B, #667eea, #764ba2, #f7A416);
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
    will-change: opacity;
}

.pcb-manufacturing-item:hover .content-item-border-animated {
    opacity: 1;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particles */
.content-item-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    border-radius: 25px;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(247, 164, 22, 0.6);
    border-radius: 50%;
    animation: floatParticle 8s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(247, 164, 22, 0.8);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 4.5s;
    animation-duration: 6.5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.6;
    }
}

.pcb-manufacturing-item:hover .particle {
    animation-duration: 3s;
    opacity: 1;
    box-shadow: 0 0 20px rgba(247, 164, 22, 1);
}

.pcb-manufacturing-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pcb-manufacturing-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pcb-manufacturing-item:nth-child(3) {
    animation-delay: 0.3s;
}

.pcb-manufacturing-item:nth-child(4) {
    animation-delay: 0.4s;
}

.pcb-manufacturing-item:hover {
    transform: translateX(10px) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(247, 164, 22, 0.5);
    box-shadow: 0 15px 50px rgba(247, 164, 22, 0.3);
    z-index: 10;
}

.content-item-image {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    transform-style: preserve-3d;
}

.pcb-manufacturing-item:hover .content-item-image {
    transform: scale(1.1) rotateY(10deg) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(247, 164, 22, 0.5);
}

.content-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.9);
}

.pcb-manufacturing-item:hover .content-item-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Image Glow Overlay */
.content-item-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.2) 0%, rgba(242, 41, 91, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.pcb-manufacturing-item:hover .content-item-overlay-glow {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.content-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    z-index: 3;
    position: relative;
}

.content-item-header {
    font-size: var(--subheader-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    display: inline-block;
}

.content-item-header::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(247, 164, 22, 0.6);
}

.pcb-manufacturing-item:hover .content-item-header {
    color: #f7A416;
    transform: translateX(8px) scale(1.05);
    text-shadow: 0 0 20px rgba(247, 164, 22, 0.8);
}

.pcb-manufacturing-item:hover .content-item-header::before {
    width: 100%;
}

.content-item-paragraph {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    transition: all 0.3s ease;
}

.pcb-manufacturing-item:hover .content-item-paragraph {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Styles for Animated Content Section */
@media (max-width: 768px) {
    .pcb-manufacturing-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .pcb-manufacturing-header {
        margin-bottom: 40px;
    }
    
    .pcb-manufacturing-title {
        font-size: var(--header-size-mobile);
    }
    
    .pcb-manufacturing-subtitle {
        font-size: var(--paragraph-size-mobile);
    }
    
    .pcb-manufacturing-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .content-item-image {
        width: 100%;
        height: 200px;
        align-self: center;
    }
    
    .content-item-body {
        padding-left: 0;
        text-align: center;
    }
    
    .content-item-header {
        font-size: var(--subheader-size-mobile);
    }
    
    .content-item-paragraph {
        font-size: var(--paragraph-size-mobile);
    }
    
    .pcb-manufacturing-item:hover {
        transform: translateY(-5px);
    }
}

/* Big Circle Behind Stats Image */
.stats-big-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px dotted #f7A416;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
    background: transparent;
    animation: bigCircleRotate 8s linear infinite;
}

@keyframes bigCircleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.liquid-strips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.liquid-strip {
    position: absolute;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
    transform: skewX(-20deg);
    animation: liquidStripMove 3s infinite ease-in-out;
}

.strip-1 {
    top: 10%;
    animation-delay: 0s;
    height: 60px;
}

.strip-2 {
    top: 35%;
    animation-delay: 0.5s;
    height: 70px;
}

.strip-3 {
    top: 60%;
    animation-delay: 1s;
    height: 65px;
}

.strip-4 {
    top: 85%;
    animation-delay: 1.5s;
    height: 55px;
}

@keyframes liquidStripMove {
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }
    100% {
        transform: translateX(150%) skewX(-20deg);
    }
}

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

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

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

.stat-item h3 {
    line-height: 1;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .about-items-block {
        gap: 15px;
        padding: 15px;
    }
    
    .about-stats {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .liquid-shape {
        width: 250px !important;
        height: 250px !important;
    }
    
    .stats-image-wrapper {
        margin-top: 20px;
    }
}

/* Why choosing Us Section */
.why-choosing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.why-choosing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(247, 164, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 41, 91, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.why-choosing-title {
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.why-choosing-container {
    max-width: 1296px;
    margin: 0 auto;
}

.why-choosing-item {
    display: flex;
     align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-left: 4px solid rgba(247, 164, 22, 0.2);
    padding-left: 30px;
    margin-left: 20px;
    position: relative;
    animation: slideInLeft 0.8s ease-out both;
    transition: all 0.3s ease;
}

.why-choosing-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 40%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #f7A416;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.why-choosing-item:hover {
    border-left-color: rgba(247, 164, 22, 0.8);
    transform: translateX(10px);
}

.why-choosing-item:hover::before {
    background: #f7A416;
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(247, 164, 22, 0.5);
}

.why-choosing-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-choosing-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-choosing-item:nth-child(3) {
    animation-delay: 0.3s;
}

.why-choosing-item:nth-child(4) {
    animation-delay: 0.4s;
}

.why-choosing-item:nth-child(5) {
    animation-delay: 0.5s;
}

.why-choosing-item:nth-child(6) {
    animation-delay: 0.6s;
}

.why-choosing-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 100px;
    text-align: center;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.why-choosing-item:hover .why-choosing-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.why-choosing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-choosing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.why-choosing-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choosing-icon i {
    font-size: 1.8rem;
    color: #f7A416;
    transition: all 0.3s ease;
}

.why-choosing-item:hover .why-choosing-icon {
    transform: rotate(5deg) scale(1.1);
}

.why-choosing-item:hover .why-choosing-icon i {
    color: #F2295B;
}

.why-choosing-content h4 {
    color: #333;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.why-choosing-content p {
    margin: 0;
    margin-top: 8px;
    padding-left: 80px; /* Align with icon + gap */
}

.why-choosing-item:hover .why-choosing-content h4 {
    color: #f7A416;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ============================================
   END SECTION: WHY LEARNING WITH US SECTION
   ============================================ */

/* ============================================
   SECTION: FOOTER
   ============================================ */
.footer-section {
    background: #000910 !important;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(247, 164, 22, 0.4);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-to-top-btn.show {
    display: flex;
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(247, 164, 22, 0.6);
    background: linear-gradient(135deg, #F2295B 0%, #f7A416 100%);
}

.scroll-to-top-btn:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

.footer-logo h3 {
    color: white;
}

.footer-contact-item {
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-item i {
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-menu a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #f7A416 !important;
    transform: translateX(5px);
}

.footer-social a {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: #f7A416 !important;
    transform: translateY(-3px);
}

.footer-section .form-control {
    color: white;
}

.footer-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-section .form-control:focus {
    background-color: #1a1a1a;
    border-color: #f7A416;
    color: white;
}

/* Responsive Design */
/* Why Learning Section Responsive */
@media (max-width: 768px) {
    
    .why-choosing-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .why-choosing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 15px;
        border-left: none;
        border-top: 4px solid rgba(247, 164, 22, 0.2);
        margin-left: 0;
        padding-left: 15px;
        padding-top: 20px;
    }
    
    .why-choosing-item::before {
        left: 50%;
        top: -12px;
        transform: translateX(-50%);
    }
    
    .why-choosing-item:hover {
        transform: translateY(5px);
    }
    
    .why-choosing-number {
        font-size: 2.5rem;
        min-width: auto;
        text-align: left;
    }
    
    .why-feature-content {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .why-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-feature-icon i {
        font-size: 1.5rem;
    }
    
    .why-feature-content p {
        padding-left: 0;
    }
    
    .why-feature-header {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* iPad Mini and Tablet (768px - 1024px) - Keep desktop layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .top-bar {
        font-size: 1rem;
        padding: 0;
    }
    
    .top-bar .col-md-6 {
        text-align: left !important;
        margin-bottom: 0;
    }
    
    .top-bar .d-flex {
        justify-content: flex-start !important;
        flex-wrap: nowrap;
    }
    
    .top-bar .gap-3 {
        gap: 1rem !important;
    }
}

@media (max-width: 767px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 4px;
    }
    
    .top-bar .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .top-bar .d-flex {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .top-bar .gap-3 {
        gap: 0.5rem !important;
    }
    
    .slider-section {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    
    section {
        padding: 50px 0;
    }
    
    .carousel-item {
        min-height: auto;
    }
    
    .slider-segment {
        width: 25px;
        height: 2.5px;
    }
    
    .slider-indicator-bar {
        padding: 4px 8px;
        gap: 4px;
    }
    
    .slider-content-animate {
        text-align: center;
    }
    
    .slider-image {
        width: 100%;
        max-width: 640px;
        height: auto;
        aspect-ratio: 640 / 370;
    }
    
    /* Service Box Mobile Fixes */
  .we-serve-section {
        padding: 40px 0;
    }
    
    .service-image-box {
        height: 250px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    /* Features Section Mobile */
    .features-header {
        padding: 20px 0;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 40px 0;
    }
    
    .about-stats {
        padding: 30px 20px;
    }
    
    
    /* Footer Mobile */
    .footer-section {
        padding: 40px 0;
    }
    
    
    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }
    
    .about-bordered-item {
        padding: 20px 15px;
    }
    
    .about-bordered-item i {
        font-size: 2rem;
    }
    
    /* Stats Image Mobile */
    .stats-image-wrapper {
        margin-top: 20px;
    }
    
    .stats-big-circle {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg);     }
}
/* ============================================
   END SECTION: FOOTER
   ============================================ */

/* ============================================
   SECTION: ABOUT PAGE STYLES
   ============================================ */

/* Animated Banner Section */
.about-banner-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.about-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(247, 164, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 41, 91, 0.3) 0%, transparent 50%);
    animation: pulseBg 8s ease-in-out infinite;
    z-index: 0;
}

.about-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.banner-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 12s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.banner-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.banner-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.banner-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.banner-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.banner-particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.about-banner-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.about-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-banner-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-banner-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.6s both;
    box-shadow: 0 0 20px rgba(247, 164, 22, 0.6);
}

.about-banner-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* About Description Section - Timeline */
.about-description-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.about-desc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(247, 164, 22, 0.05) 0%, rgba(242, 41, 91, 0.05) 100%);
    z-index: 0;
}

.about-desc-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-desc-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-desc-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.about-desc-subtitle {
    font-size: var(--paragraph-size);
    color: #666;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f7A416 0%, #F2295B 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.timeline-year {
    flex: 0 0 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(247, 164, 22, 0.4);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(247, 164, 22, 0.6);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 60px;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(247, 164, 22, 0.2);
}

.timeline-title {
    font-size: var(--subheader-size);
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: var(--paragraph-size);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Future Tech Section */
.embrace-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    color: white;
}

.embrace-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(247, 164, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(242, 41, 91, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.embrace-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.embrace-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.embrace-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.embrace-subtitle {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.7);
}

.embrace-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.embrace-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 164, 22, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.embrace-card:hover::before {
    transform: scale(1);
}

.embrace-card:nth-child(1) { animation-delay: 0.1s; }
.embrace-card:nth-child(2) { animation-delay: 0.2s; }
.embrace-card:nth-child(3) { animation-delay: 0.3s; }
.embrace-card:nth-child(4) { animation-delay: 0.4s; }
.embrace-card:nth-child(5) { animation-delay: 0.5s; }
.embrace-card:nth-child(6) { animation-delay: 0.6s; }

.embrace-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 164, 22, 0.5);
    box-shadow: 0 20px 60px rgba(247, 164, 22, 0.3);
}

.tech-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.2) 0%, rgba(242, 41, 91, 0.2) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.tech-card-icon i {
    font-size: 2.5rem;
    color: #f7A416;
    transition: all 0.4s ease;
}

.embrace-card:hover .tech-card-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.4) 0%, rgba(242, 41, 91, 0.4) 100%);
}

.embrace-card:hover .tech-card-icon i {
    color: #F2295B;
    transform: scale(1.2);
}

.tech-card-title {
    font-size: var(--subheader-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.tech-card-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* What We Do Section */
.what-we-do-section {
    background: #ffffff;
    padding: 100px 0;
}

.what-we-do-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.03) 0%, rgba(242, 41, 91, 0.03) 100%);
    z-index: 0;
}

.what-we-do-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.what-we-do-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.what-we-do-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.what-we-do-subtitle {
    font-size: var(--paragraph-size);
    color: #666;
}

.what-we-do-column {
    height: 100%;
}

.what-we-do-column-header {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #f7A416 0%, #F2295B 100%) 1;
    animation: fadeInDown 0.8s ease-out;
}

.what-we-do-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.what-we-do-point {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: fadeInUp 0.8s ease-out both;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.what-we-do-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 164, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.what-we-do-point:hover::before {
    left: 100%;
}

.what-we-do-point:nth-child(1) { animation-delay: 0.1s; }
.what-we-do-point:nth-child(2) { animation-delay: 0.2s; }
.what-we-do-point:nth-child(3) { animation-delay: 0.3s; }
.what-we-do-point:nth-child(4) { animation-delay: 0.4s; }
.what-we-do-point:nth-child(5) { animation-delay: 0.5s; }

.what-we-do-point:hover {
    transform: translateX(15px);
    border-left-color: #f7A416;
    box-shadow: 0 10px 35px rgba(247, 164, 22, 0.25);
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.02) 0%, rgba(242, 41, 91, 0.02) 100%);
}

.point-content {
    flex: 1;
}

.point-text {
    font-size: var(--paragraph-size);
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.what-we-do-point:hover .point-text {
    color: #f7A416;
    transform: translateX(5px);
}

.point-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.1) 0%, rgba(242, 41, 91, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.point-arrow i {
    font-size: 0.85rem;
    color: #f7A416;
    transition: all 0.4s ease;
}

.what-we-do-point:hover .point-arrow {
    transform: scale(1.15) translateX(5px);
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.2) 0%, rgba(242, 41, 91, 0.2) 100%);
    box-shadow: 0 5px 15px rgba(247, 164, 22, 0.3);
}

.what-we-do-point:hover .point-arrow i {
    color: #F2295B;
    transform: translateX(3px);
}

/* World Section */
.legal-information-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 100px 0;
    color: white;
}

.legal-information-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 164, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 41, 91, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.legal-information-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.legal-information-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.legal-information-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.legal-information-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.legal-information-subtitle {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.7);
}

/* World Table Styles */
.legal-information-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.legal-information-table-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 164, 22, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.legal-information-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
    z-index: 1;
}


.legal-information-table-row {
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
}

.legal-information-table-row:nth-child(1) { animation-delay: 0.1s; }
.legal-information-table-row:nth-child(2) { animation-delay: 0.2s; }
.legal-information-table-row:nth-child(3) { animation-delay: 0.3s; }
.legal-information-table-row:nth-child(4) { animation-delay: 0.4s; }
.legal-information-table-row:nth-child(5) { animation-delay: 0.5s; }
.legal-information-table-row:nth-child(6) { animation-delay: 0.6s; }
.legal-information-table-row:nth-child(7) { animation-delay: 0.7s; }

.legal-information-table-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(247, 164, 22, 0.2) 0%, rgba(242, 41, 91, 0.2) 100%);
    transition: width 0.4s ease;
    z-index: 0;
}

.legal-information-table-row:hover::before {
    width: 100%;
}

.legal-information-table-row:hover {
    transform: translateX(10px);
}

.legal-information-table-cell {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.legal-information-table-row:first-child .legal-information-table-cell:first-child {
    border-top-left-radius: 15px;
}

.legal-information-table-row:first-child .legal-information-table-cell:last-child {
    border-top-right-radius: 15px;
}

.legal-information-table-row:last-child .legal-information-table-cell:first-child {
    border-bottom-left-radius: 15px;
}

.legal-information-table-row:last-child .legal-information-table-cell:last-child {
    border-bottom-right-radius: 15px;
}

.legal-information-table-row:last-child .legal-information-table-cell {
    border-bottom: none;
}

.legal-information-table-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, #ffffff 0%, #f7A416 50%, #F2295B 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s ease infinite;
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.legal-information-table-row:hover .legal-information-table-text {
    transform: translateX(10px) scale(1.05);
    background-position: 100% 50%;
    filter: drop-shadow(0 0 10px rgba(247, 164, 22, 0.6));
}

/* OM Tech Section Section */
.OM-tech-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
}


.OM-tech-content {
    position: relative;
    z-index: 1;
}

.OM-tech-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.OM-tech-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.OM-tech-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.OM-tech-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.OM-tech-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.OM-tech-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.OM-tech-feature-item i {
    font-size: 1.5rem;
    color: #f7A416;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
    line-height: 1.2;
}

.OM-tech-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.OM-tech-feature-item span {
    font-size: var(--paragraph-size);
    color: white;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.OM-tech-feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.OM-tech-visual {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.OM-tech-card-3d {
    width: 100%;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    animation: card3DRotate 10s infinite ease-in-out;
}

/* General hover - pause at current position */
.OM-tech-card-3d:hover {
    animation-play-state: paused;
}

/* Condition 1: Hover on Innovation side - pause and show Innovation straight (0deg) */
.OM-tech-card-3d.show-front:hover,
.OM-tech-card-3d:has(.card-3d-front:hover) {
    animation-play-state: paused;
    transform: rotateY(0deg) !important;
}

/* Condition 2: Hover on Excellence side - pause and show Excellence straight (180deg) */
.OM-tech-card-3d.show-back:hover,
.OM-tech-card-3d:has(.card-3d-back:hover) {
    animation-play-state: paused;
    transform: rotateY(180deg) !important;
}

@keyframes card3DRotate {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0px;
    pointer-events: auto;
}

.card-3d-back {
    transform: rotateY(180deg);
}

.card-3d-front i,
.card-3d-back i {
    font-size: 5rem;
    color: #f7A416;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: -30px;
}

.card-3d-front h4,
.card-3d-back h4 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.card-3d-front p,
.card-3d-back p {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    padding: 0 20px;
}

/* Build-idea-section */
.Build-idea-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 100px 0;
    color: white;
    position: relative;
}

.Build-idea-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 164, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 41, 91, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.Build-idea-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Build-idea-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(247, 164, 22, 0.5);
}

.Build-idea-subtitle {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.7);
}

.Build-idea-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    border-radius: 15px;
    height: 100%;
    z-index: 2;
}

.Build-idea-item:nth-child(1) { animation-delay: 0.1s; }
.Build-idea-item:nth-child(2) { animation-delay: 0.2s; }
.Build-idea-item:nth-child(3) { animation-delay: 0.3s; }
.Build-idea-item:nth-child(4) { animation-delay: 0.4s; }

.Build-idea-item:hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(247, 164, 22, 0.2);
}

/* Connecting Line Animation */
.row.position-relative {
    min-height: 400px;
}

.Build-idea-connecting-line {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 0;
    pointer-events: none;
    background: none;
    transform: translateY(-50%);
}

/* Base line connecting all circles (subtle background) */
.Build-idea-connecting-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(12.5% + 45px);
    width: calc(75% - 90px);
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(247, 164, 22, 0.2) 0%,
        rgba(247, 164, 22, 0.2) 33.33%,
        rgba(247, 164, 22, 0.2) 66.66%,
        rgba(242, 41, 91, 0.2) 100%
    );
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
}

/* Animated line that draws from circle 1 to circle 4 */
.Build-idea-connecting-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(12.5% + 45px);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(247, 164, 22, 0.8), 0 0 40px rgba(242, 41, 91, 0.6);
    animation: drawLineFromCircle1To4 2.5s ease-in-out forwards;
    z-index: 0;
}

/* Add moving dot using a pseudo-element on the row */
.row.position-relative::after {
    content: '';
    position: absolute;
    top: 62px;
    left: calc(12.5% + 45px);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #f7A416;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(247, 164, 22, 1), 0 0 30px rgba(247, 164, 22, 0.8);
    z-index: 1;
    animation: moveDotFromCircle1To4 2.5s ease-in-out forwards;
    pointer-events: none;
}

@keyframes drawLineFromCircle1To4 {
    0% {
        width: 0;
    }
    100% {
        width: calc(75% - 90px);
    }
}

@keyframes moveDotFromCircle1To4 {
    0% {
        left: calc(12.5% + 45px);
        opacity: 1;
    }
    100% {
        left: calc(87.5% - 45px);
        opacity: 1;
    }
}

/* Mobile: Different animation line connecting circles vertically */
@media (max-width: 992px) {
    .Build-idea-connecting-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        background: none;
        transform: translateX(-50%);
        display: block;
    }
    
    /* Base vertical line with wave pattern - ends at top of last circle */
    .Build-idea-connecting-line::before {
        content: '';
        position: absolute;
        top: 8%;
        left: 50%;
        width: 4px;
        height: 68%;
        background: linear-gradient(180deg, 
            rgba(247, 164, 22, 0.15) 0%,
            rgba(247, 164, 22, 0.15) 33.33%,
            rgba(247, 164, 22, 0.15) 66.66%,
            rgba(242, 41, 91, 0.15) 100%
        );
        transform: translateX(-50%);
        border-radius: 2px;
        z-index: 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    /* Animated vertical line with pulsing effect - ends at top of last circle */
    .Build-idea-connecting-line::after {
        content: '';
        position: absolute;
        top: 8%;
        left: 50%;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #f7A416 0%, #F2295B 100%);
        transform: translateX(-50%);
        border-radius: 2px;
        box-shadow: 
            0 0 15px rgba(247, 164, 22, 0.6),
            0 0 30px rgba(242, 41, 91, 0.4);
        animation: drawLineVerticalMobile 2.5s ease-in-out forwards,
                   pulseLineMobile 2s ease-in-out 2.5s infinite;
        z-index: 0;
    }
    
    /* Moving dot with bounce effect - overrides desktop animation */
    .row.position-relative::after {
        content: '';
        position: absolute;
        top: 8%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 14px;
        height: 14px;
        background: radial-gradient(circle, #f7A416 0%, #F2295B 100%);
        border-radius: 50%;
        box-shadow: 
            0 0 20px rgba(247, 164, 22, 1),
            0 0 40px rgba(247, 164, 22, 0.8),
            0 0 60px rgba(242, 41, 91, 0.6);
        z-index: 1;
        animation: moveDotVerticalMobile 2.5s ease-in-out forwards,
                   bounceDotMobile 0.6s ease-in-out 2.5s infinite;
        pointer-events: none;
        display: block;
    }
}

@keyframes drawLineVerticalMobile {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        height: 68%;
        opacity: 1;
    }
}

@keyframes moveDotVerticalMobile {
    0% {
        top: 8%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 78%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulseLineMobile {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(247, 164, 22, 0.6),
            0 0 30px rgba(242, 41, 91, 0.4);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(247, 164, 22, 1),
            0 0 50px rgba(242, 41, 91, 0.8),
            0 0 70px rgba(247, 164, 22, 0.6);
    }
}

@keyframes bounceDotMobile {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.Build-idea-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 30px rgba(247, 164, 22, 0.3);
    text-align: center;
    z-index: 3;
}

.Build-idea-item:hover .Build-idea-number {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(247, 164, 22, 0.6));
}

.Build-idea-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid rgba(247, 164, 22, 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.1);
}

.Build-idea-item:hover .Build-idea-number::after {
    width: 110px;
    height: 110px;
    border-color: rgba(247, 164, 22, 0.5);
    box-shadow: 0 0 30px rgba(247, 164, 22, 0.4);
}

.Build-idea-content {
    flex: 1;
    padding-top: 10px;
}

.Build-idea-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.Build-idea-item:hover .Build-idea-header {
    color: #f7A416;
    transform: translateY(-3px);
}

.Build-idea-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    transition: all 0.4s ease;
}

.Build-idea-item:hover .Build-idea-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Styles for Cook Well Section */
@media (max-width: 992px) {
    .Build-idea-number {
        font-size: 3.5rem;
    }
    
    .Build-idea-header {
        font-size: 1.3rem;
    }
    
    .Build-idea-item {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .Build-idea-item {
        padding: 25px 20px;
    }
    
    .Build-idea-number {
        font-size: 3rem;
    }
    
    .Build-idea-header {
        font-size: 1.2rem;
    }
    
    .Build-idea-number::after {
        width: 80px;
        height: 80px;
    }
    
    .Build-idea-item:hover .Build-idea-number::after {
        width: 90px;
        height: 90px;
    }
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-banner-section {
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .about-banner-title {
        font-size: 2.5rem;
    }
    
    .about-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .about-desc-title,
    .embrace-title,
    .what-we-do-title,
    .world-title,
    .contact-title {
        font-size: var(--header-size-mobile);
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .what-we-do-column-header {
        font-size: 1.5rem;
    }
    
    .what-we-do-point {
    flex-direction: row;
        text-align: left;
    gap: 8px;
    }
    
    .point-arrow {
    margin: 0;
    }
    
    .legal-information-table-wrapper {
        padding: 20px;
        overflow-x: auto;
    }
    
    .legal-information-table {
        min-width: 600px;
    }
    
    .legal-information-table-cell {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .innovative-card-3d {
        height: 300px;
    }
}
/* ============================================
   END SECTION: ABOUT PAGE STYLES
   ============================================ */

/* ============================================
   SECTION: CONTACT PAGE STYLES
   ============================================ */

/* Contact Banner Section */
.contact-banner-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.contact-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(247, 164, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 41, 91, 0.3) 0%, transparent 50%);
    animation: pulseBg 8s ease-in-out infinite;
    z-index: 0;
}

.contact-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-banner-particles .banner-particle,
.contact-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 12s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.contact-banner-particles .banner-particle:nth-child(1),
.contact-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-banner-particles .banner-particle:nth-child(2),
.contact-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.contact-banner-particles .banner-particle:nth-child(3),
.contact-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.contact-banner-particles .banner-particle:nth-child(4),
.contact-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.contact-banner-particles .banner-particle:nth-child(5),
.contact-particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.contact-banner-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.contact-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-banner-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-banner-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.6s both;
    box-shadow: 0 0 20px rgba(247, 164, 22, 0.6);
}

.contact-banner-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* What We Offer Section */
.what-we-offer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #7e22ce 50%, #c026d3 75%, #e879f9 100%);
    background-size: 500% 500%;
    padding: 100px 0;
    position: relative;
}

@keyframes cookingGradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes cookingBgPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes cookingShapeMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -80px) scale(1.2);
    }
    50% {
        transform: translate(-80px, 100px) scale(0.8);
    }
    75% {
        transform: translate(120px, 80px) scale(1.1);
    }
}

.what-we-offer-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.what-we-offer-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.what-we-offer-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e879f9 0%, #7e22ce 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.what-we-offer-subtitle {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
}

.what-we-offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.what-we-offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 2, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.what-we-offer-card:hover::before {
    transform: scale(1);
}

.what-we-offer-card:nth-child(1) { animation-delay: 0.1s; }
.what-we-offer-card:nth-child(2) { animation-delay: 0.2s; }
.what-we-offer-card:nth-child(3) { animation-delay: 0.3s; }
.what-we-offer-card:nth-child(4) { animation-delay: 0.4s; }
.what-we-offer-card:nth-child(5) { animation-delay: 0.5s; }
.what-we-offer-card:nth-child(6) { animation-delay: 0.6s; }

.what-we-offer-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: rgba(232, 121, 249, 0.5);
    box-shadow: 0 20px 60px rgba(232, 121, 249, 0.4);
}

.what-we-offer-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 121, 249, 0.3) 0%, rgba(126, 34, 206, 0.3) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.what-we-offer-card-icon i {
    font-size: 2.5rem;
    color: #ffa502;
    transition: all 0.4s ease;
}

.what-we-offer-card:hover .what-we-offer-card-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.5) 0%, rgba(255, 107, 107, 0.5) 100%);
}

.what-we-offer-card:hover .what-we-offer-card-icon i {
    color: #ff6b6b;
    transform: scale(1.3);
}

.what-we-offer-card-title {
    font-size: var(--subheader-size);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.what-we-offer-card-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #0f4c75 75%, #3282b8 100%);
    background-size: 600% 600%;
    animation: contactGradientShift 30s ease infinite;
    padding: 100px 0;
    position: relative;
}

@keyframes contactGradientShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(50, 130, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(15, 76, 117, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(44, 83, 100, 0.2) 0%, transparent 50%);
    animation: contactBgWave 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes contactBgWave {
    0%, 100% {
        opacity: 0.5;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        opacity: 0.8;
        transform: translate(20px, -20px) rotate(5deg);
    }
    66% {
        opacity: 0.6;
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 10s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.contact-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.contact-particle:nth-child(2) {
    top: 60%;
    left: 75%;
    animation-delay: 2.5s;
}

.contact-particle:nth-child(3) {
    top: 80%;
    left: 35%;
    animation-delay: 5s;
}

.contact-particle:nth-child(4) {
    top: 40%;
    left: 65%;
    animation-delay: 7.5s;
}

.contact-content {
    position: relative;
    z-index: 2;
    animation: fadeInLeft 0.8s ease-out;
}

.contact-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.contact-title {
    font-size: var(--header-size);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.3) 0%, rgba(242, 41, 91, 0.3) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #f7A416;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-item:hover .contact-icon i {
    color: #F2295B;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: var(--subheader-size);
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.contact-text {
    font-size: var(--paragraph-size);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-innovative-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-message {
    margin-bottom: 15px;
}

.contact-form-message .alert {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin: 0;
    animation: fadeInDown 0.5s ease-out;
}

.contact-form-message .alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #d4edda;
}

.contact-form-message .alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #f8d7da;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    font-size: var(--paragraph-size);
    transition: all 0.3s ease;
}

.form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(247, 164, 22, 0.6);
    outline: none;
    box-shadow: 0 0 20px rgba(247, 164, 22, 0.3);
    color: white;
}

.form-group textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 164, 22, 0.5);
}

.contact-submit-btn i {
    transition: transform 0.4s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 150px;
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(247, 164, 22, 0.6);
    transform: translateY(-2px);
}

.file-upload-label i {
    font-size: 2.5rem;
    color: #f7A416;
    transition: all 0.3s ease;
}

.file-upload-label:hover i {
    transform: scale(1.1) translateY(-5px);
    color: #F2295B;
}

.file-upload-text {
    color: white;
    font-weight: 600;
    font-size: var(--paragraph-size);
}

.file-upload-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.file-item-name {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-item-name i {
    color: #f7A416;
}

.file-item-remove {
    background: rgba(242, 41, 91, 0.3);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-item-remove:hover {
    background: rgba(242, 41, 91, 0.6);
    transform: scale(1.1);
}

/* Map Section Styles */
.map-section {
    background: linear-gradient(135deg, #0a1929 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 600px;
}

.map-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 164, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 41, 91, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 181, 246, 0.1) 0%, transparent 50%);
    animation: mapBgPulse 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes mapBgPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.map-section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.map-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(247, 164, 22, 0.6);
    border-radius: 50%;
    animation: mapParticleFloat 20s infinite ease-in-out;
}

.map-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.map-particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.map-particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.map-particle:nth-child(4) {
    left: 90%;
    top: 80%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.map-particle:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 8s;
    animation-duration: 20s;
}

@keyframes mapParticleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) translateX(25px) scale(1.1);
        opacity: 0.7;
    }
}

.map-section-header {
    position: relative;
    z-index: 2;
}

.map-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(247, 164, 22, 0.2) 0%, rgba(242, 41, 91, 0.2) 100%);
    border: 1px solid rgba(247, 164, 22, 0.4);
    border-radius: 25px;
    color: #f7A416;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation: badgePulse 3s ease-in-out infinite;
}

.map-section-title {
    font-size: var(--header-size);
    font-weight: 800;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleSlide 1s ease-out;
}

.map-section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f7A416 0%, #F2295B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.3s both;
}

.map-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--paragraph-size);
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 164, 22, 0.3) 0%, transparent 70%);
    animation: mapGlowRotate 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes mapGlowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.map-border-animated {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f7A416, #F2295B, #f7A416);
    background-size: 200% 200%;
    border-radius: 20px;
    z-index: 0;
    animation: mapBorderRotate 3s linear infinite;
    opacity: 0.6;
}

@keyframes mapBorderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.map-iframe {
    position: relative;
    z-index: 2;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover .map-iframe {
    filter: brightness(1) contrast(1.2);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(247, 164, 22, 0.4);
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.marker-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(247, 164, 22, 0.5);
    animation: markerBounce 2s ease-in-out infinite;
}

.marker-icon i {
    transform: rotate(45deg);
    color: white;
    font-size: 1.5rem;
}

@keyframes markerBounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-10px);
    }
}

.map-info-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 4;
    max-width: 300px;
    animation: mapCardSlideIn 1s ease-out 0.5s both;
    border: 1px solid rgba(247, 164, 22, 0.3);
}

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

.map-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(247, 164, 22, 0.2);
}

.map-info-header i {
    font-size: 1.5rem;
    color: #f7A416;
}

.map-info-header h5 {
    margin: 0;
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
}

.map-info-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-info-content p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-content i {
    color: #F2295B;
    font-size: 1rem;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-banner-title {
        font-size: 2.5rem;
    }
    
    .contact-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .what-we-offer-title,
    .contact-title {
        font-size: var(--header-size-mobile);
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .file-upload-label {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .file-upload-label i {
        font-size: 2rem;
    }
    
    .map-section {
        min-height: 500px;
    }
    
    .map-iframe {
        height: 400px !important;
    }
    
    .map-info-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .map-marker {
        display: none;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #f7A416 0%, #F2295B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION: DROPDOWN MENU ANIMATIONS
   ============================================ */

/* Dropdown Menu Container Animation */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px 0 !important;
    margin-top: 10px !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    animation: dropdownFadeIn 0.3s ease forwards;
    background: white !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dropdown Item Animations */
.dropdown-item {
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 2px 10px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
    color: #667eea !important;
    transform: translateX(5px);
    padding-left: 30px !important;
}

.dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.dropdown-item.active::before {
    background: white;
    width: 4px;
}

/* Staggered Animation for Dropdown Items */
.dropdown-menu.show .dropdown-item {
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
}

.dropdown-menu.show .dropdown-item:nth-child(1) {
    animation-delay: 0.05s;
}

.dropdown-menu.show .dropdown-item:nth-child(2) {
    animation-delay: 0.1s;
}

.dropdown-menu.show .dropdown-item:nth-child(3) {
    animation-delay: 0.15s;
}

.dropdown-menu.show .dropdown-item:nth-child(4) {
    animation-delay: 0.2s;
}

.dropdown-menu.show .dropdown-item:nth-child(5) {
    animation-delay: 0.25s;
}

.dropdown-menu.show .dropdown-item:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dropdown Toggle Arrow Animation */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Nav Link Hover Effect */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

/* Dropdown Menu Icon Animation */
.dropdown-item i {
    margin-right: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Mobile Dropdown Animation */
@media (max-width: 991.98px) {
    .dropdown-menu {
        margin-top: 5px !important;
        border-radius: 8px !important;
        animation: dropdownSlideDown 0.3s ease forwards;
    }
    
    @keyframes dropdownSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        margin: 1px 5px;
        padding: 10px 15px !important;
    }
}

/* Enhanced Dropdown Backdrop */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    animation: arrowFadeIn 0.3s ease 0.2s forwards;
    opacity: 0;
}

@keyframes arrowFadeIn {
    to {
        opacity: 1;
    }
}

/* Dropdown Menu Glow Effect */
.dropdown-menu {
    position: relative;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Dropdown Ripple Effect */
.dropdown-toggle {
    position: relative;
    overflow: hidden;
}

.dropdown-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Dropdown Click Animation */
.dropdown-toggle.dropdown-clicked {
    animation: dropdownClickPulse 0.3s ease;
}

@keyframes dropdownClickPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced Dropdown Show/Hide States */
.dropdown-menu.dropdown-showing {
    animation: dropdownFadeIn 0.3s ease forwards;
}

.dropdown-menu.dropdown-hiding {
    animation: dropdownFadeOut 0.2s ease forwards;
}

@keyframes dropdownFadeOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

/* Navbar Dropdown Specific Styles */
.navbar .dropdown-menu {
    min-width: 220px;
}

.navbar .dropdown-item {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Smooth Nav Link Transitions */
.nav-link.dropdown-toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link.dropdown-toggle[aria-expanded="true"],
.nav-link.dropdown-toggle.show {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Ensure only one dropdown is active at a time */
.nav-link.dropdown-toggle[aria-expanded="false"] {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Mobile Menu Dropdown Enhancements */
@media (max-width: 991.98px) {
    .navbar-collapse .dropdown-menu {
        margin-left: 20px;
        margin-top: 5px;
        border-left: 3px solid rgba(102, 126, 234, 0.3);
        padding-left: 15px;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
    
    .navbar-collapse .dropdown-item {
        padding-left: 25px !important;
        color: white !important;
    }
    
    .navbar-collapse .dropdown-item:hover {
        color: white !important;
        background: rgba(102, 126, 234, 0.3) !important;
    }
    
    .navbar-collapse .dropdown-item.active {
        color: white !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }
    
    /* Prevent dropdown toggle from closing mobile menu */
    .navbar-collapse .dropdown-toggle {
        pointer-events: auto;
        color: white !important;
    }
    
    .navbar-collapse .dropdown-toggle[aria-expanded="true"] {
        background: rgba(102, 126, 234, 0.2);
        border-radius: 5px;
        color: white !important;
    }
    
    /* Ensure dropdowns stay open on mobile */
    .navbar-collapse .dropdown-menu.show {
        display: block !important;
    }
    
    /* Make all text in dropdown menu white on mobile */
    .navbar-collapse .dropdown-menu {
        color: white !important;
    }
    
    .navbar-collapse .dropdown-menu * {
        color: white !important;
    }
}

/* ============================================
   END SECTION: DROPDOWN MENU ANIMATIONS
   ============================================ */
/* ============================================
   START SECTION:Terms and policy
   ============================================ */
   .policies-container {
            display: flex;
            min-height: calc(100vh - 104px);
            margin-bottom: 0;
        }
        
        /* Side Navbar */
        .policies-sidebar {
            width: 280px;
            background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 30px 0;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
            position: fixed;
            top: 96px;
            height: calc(100vh - 104px);
            overflow-y: auto;
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        
        .policies-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .policies-nav-item {
            margin: 5px 15px;
        }
        
        .policies-nav-link {
            display: flex;
            align-items: center;
            padding: 10px 10px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .policies-nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #f7A416 0%, #F2295B 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .policies-nav-link:hover,
        .policies-nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transform: translateX(5px);
        }
        
        .policies-nav-link.active::before {
            transform: scaleY(1);
        }
        
        .policies-nav-link i {
            font-size: 1.2rem;
            margin-right: 12px;
            width: 24px;
            text-align: center;
        }
        
        .policies-nav-link span {
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        /* Main Content */
        .policies-main {
            flex: 1;
            margin-left: 280px;
            padding: 40px;
            padding-left: 20px;
            background: #f8f9fa;
            min-height: calc(100vh - 104px);
        }
        
        .policies-content {
            max-width: 1200px;
            margin: 0;
        }
        
        .policies-content-header {
            margin-bottom: 40px;
            animation: fadeInDown 0.6s ease-out;
        }
        
        .policies-content-header h1 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .policies-content-header p {
            font-size: 1.1rem;
            color: #6c757d;
            margin: 0;
            margin-bottom: 30px;
        }
        
        .policies-content-body {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.6s ease-out;
        }
        
        .tab-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid;
            border-image: linear-gradient(90deg, #f7A416 0%, #F2295B 100%) 1;
        }
        
        .tab-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #495057;
            margin: 0;
        }
        
        .content-hidden {
            display: none;
        }
        
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .policies-sidebar {
                transform: translateX(-100%);
                width: 260px;
            }
            
            .policies-sidebar.open {
                transform: translateX(0);
            }
            
            .policies-main {
                margin-left: 0;
                padding: 20px;
            }
            
            .policies-sidebar {
                top: 115px;
                height: calc(100vh - 104px);
            }
            
            .policies-mobile-toggle {
                position: fixed;
                top: 150px;
                left: 20px;
                z-index: 1001;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                border: none;
                padding: 12px 186px;
                border-radius: 10px;
                font-size: 1.2rem;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }
            
            body.sidebar-open .policies-mobile-toggle {
                display: none !important;
            }
            
            .policies-main {
                padding-top: 80px;
                margin-top: 10px;
            }
            
            .policies-content-header {
                margin-top: 0;
            }
            
            .policies-content-header h1 {
                font-size: 2rem;
                margin-top: 0;
            }
            
            .policies-content-body {
                padding: 25px;
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .policies-link {
            transition: all 0.3s ease;
        }
        
        .policies-link:hover {
            color: #f7A416 !important;
            transform: translateY(-2px);
        }
/* ============================================
   END SECTION:Terms and policy
   ============================================ */