/* ==========================================
   CSS Variables & Base Styles
   ========================================== */
:root {
    /* Brand Colors - Oramet */
    --primary-color: #f6aa1f;
    /* Oramet Gold/Orange */
    --primary-dark: #D68910;
    /* Darker Gold */
    --primary-light: #FFB84D;
    /* Lighter Gold */
    --secondary-color: #244081;
    /* Oramet Blue */
    --secondary-dark: #1F3A6B;
    /* Darker Blue */
    --secondary-light: #4A6FB5;
    /* Lighter Blue */
    --accent-color: #F5A623;
    /* Gold accent */

    /* Neutral Colors */
    --dark-bg: #000000;
    /* Black from logo background */
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2E5090;
    /* Blue for headings */
    --text-light: #6c757d;

    /* Spacing */
    --section-padding: 80px 0;

    /* Typography */
    --font-heading: 'Ubuntu', Sans-sans-serif;
    --font-body: 'Poppins', sans-sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ==========================================
   Top Info Bar (Narrower)
   ========================================== */
.top-info-bar {
    background: linear-gradient(135deg, #2E5090 0%, #1F3A6B 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.contact-link {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.95;
}

.contact-link .fa-phone-alt {
    transform: rotateY(180deg);
    /* flips horizontally */
    display: inline-block;
}


.contact-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;
}

.contact-link i {
    font-size: 16px;
    font-weight: bold;
    color: #F5A623;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    transition: 0.2s ease;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    /* transform: translateY(-2px); */
}

.social-icon:hover {
    background: rgba(245, 166, 35, 0.15);
    color: #fff;
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-2px);
}


/* ==========================================
   Language Selector Custom Style
   ========================================== */

.language-selector {
    position: relative;
}

.language-selector .form-select {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 2px 35px 2px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.3s ease;
    min-width: 130px;
}

/* Custom dropdown arrow */
.language-selector::after {
    content: "\f078";
    /* FontAwesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #2E5090;
    font-size: 12px;
}

/* Arrow White on Hover */
.language-selector:hover::after {
    color: #fff;
}

/* Hover Effect like social icon */
.language-selector .form-select:hover {
    background: rgba(245, 166, 35, 0.15);
    color: #fff;
    border-color: rgba(245, 166, 35, 0.3);
}

/* Focus Effect */
.language-selector .form-select:focus {
    box-shadow: none;
    outline: none;
    background: rgba(245, 166, 35, 0.25);
    color: #fff;
    border-color: rgba(245, 166, 35, 0.4);
}

/* Dropdown option styling */
.language-selector .form-select option {
    background: #2E5090;
    color: #fff;
    font-size: 13px;
}


/* ==========================================
   Navigation Bar
   ========================================== */
.custom-navbar {
    background: #fff;
    box-shadow: 0 6px 18px rgba(46, 80, 144, 0.12);
    padding: 0px 0;
    overflow-x: hidden;
    border-bottom: 3px solid var(--primary-color);
}

.navbar-collapse {
    max-width: 100%;
}

/* Logo */
.logo-img {
    height: 80px;
    width: 164px;
    max-width: 190px;
    transform: none;
}

/* Center menu properly */
.nav-center {
    margin: 0 auto;
    gap: 28px;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color) !important;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 0;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Right section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Search */
.search-box {
    position: relative;
    width: 230px;
}

.search-box {
    width: 100%;
    max-width: 230px;
    min-width: 160px;
}


.search-box input {
    border-radius: 30px;
    padding: 10px 44px 10px 16px;
    border: 2px solid #e5e5e5;
    font-weight: 500;
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

.search-box input:focus~.search-icon {
    color: var(--primary-color);
}

/* Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-buttons .btn {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.btn-primary {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .nav-right {
        flex-direction: column;
        align-items: stretch;
        margin-top: 15px;
    }

    .search-box {
        width: 100%;
    }

    .header-buttons {
        width: 100%;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .nav-center {
        gap: 0;
    }

    .nav-link {
        padding: 10px 0 !important;
    }
}

/* Only large screens */
@media (min-width: 1200px) {
    .nav-link {
        white-space: nowrap;
    }

    .header-buttons .btn {
        white-space: nowrap;
    }
}

/* Below 1200px */
@media (max-width: 1199px) {

    .nav-link,
    .header-buttons .btn {
        white-space: normal;
        text-align: center;
    }
}

/* Navbar toggler customization */
.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
}

.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='%23F5A623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* .... */

/* Resources dropdown */
.resources-menu {
    border-radius: 14px;
    border: none;
    padding: 10px 0;
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* Dropdown items */
.resources-menu .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}

.resources-menu .dropdown-item i {
    color: var(--primary-color);
    font-size: 16px;
    min-width: 18px;
}

.resources-menu .dropdown-item:hover {
    background: rgba(245, 166, 35, 0.12);
    color: var(--primary-color);
    padding-left: 26px;
}

/* Dropdown arrow smooth */


.nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Hover dropdown - disable click behavior */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}


.navbar {
    overflow: visible !important;
}

.dropdown-menu {
    position: absolute;
}

.custom-navbar {
    position: sticky;
    top: 0;
    /* z-index: 9999; */
}


.nav-item.dropdown:hover .resources-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Remove dropdown caret icon */
.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* Submenu position */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* ........... */



/* ==========================================
   LOGO STYLING - BIGGER & PROMINENT
   ========================================== */


#logoLink {
    display: inline-block;
    padding: 0px 10px;
    overflow: visible;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(245, 166, 35, 0.3));
}

/* ==========================================
   CENTER NAVIGATION MENU
   ========================================== */


.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color) !important;
    padding: 8px 0 !important;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==========================================
   RESOURCES DROPDOWN
   ========================================== */
.nav-item.dropdown {
    position: relative;
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

.resources-menu {
    border-radius: 12px;
    border: none;
    padding: 8px 0;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    background: #fff;
    left: -80% 
}

.nav-item.dropdown:hover .resources-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.resources-menu .dropdown-item {
    padding: 14px 22px;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.resources-menu .dropdown-item i {
    color: var(--primary-color);
    font-size: 17px;
    min-width: 20px;
    transition: transform 0.25s ease;
}

.resources-menu .dropdown-item:hover {
    background: rgba(245, 166, 35, 0.1);
    color: var(--primary-color);
    padding-left: 28px;
    border-left-color: var(--primary-color);
}

.resources-menu .dropdown-item:hover i {
    transform: scale(1.15);
}

/* ==========================================
   RIGHT SECTION
   ========================================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

/* Search Box */
.search-box {
    position: relative;
    width: 214px;
    /* max-width: 240px; */
    min-width: 180px;
}

.search-box input {
    border-radius: 30px;
    padding: 11px 45px 11px 18px;
    border: 2px solid #e8e8e8;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.search-box input::placeholder {
    color: #999;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
    outline: none;
    background: #fff;
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-box input:focus~.search-icon {
    color: var(--primary-color);
}

/* ==========================================
   HEADER BUTTONS
   ========================================== */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-buttons .btn {
    border-radius: 30px;
    padding: 11px 12px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

.btn-primary {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
}

/* ==========================================
   NAVBAR TOGGLER (Mobile)
   ========================================== */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(245, 166, 35, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.2);
    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='%23F5A623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 26px;
    height: 26px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets and below (992px) */
@media (max-width: 992px) {
    .custom-navbar .container-fluid {
        padding: 0 20px;
    }

    .logo-img {
        height: 55px;
        max-width: 200px;
    }

    .nav-right {
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
        gap: 15px;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .header-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons .btn {
        width: 100%;
        padding: 12px 24px;
    }

    .nav-center {
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
        width: 100%;
    }

    .resources-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-left: 3px solid var(--primary-color);
        margin-left: 15px;
        margin-top: 8px;
    }

    .nav-item.dropdown:hover .resources-menu {
        display: none;
    }

    .nav-item.dropdown.show .resources-menu {
        display: block;
    }
}

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .nav-link {
        white-space: nowrap;
        font-size: 15.5px;
    }

    .nav-center {
        gap: 20px;
    }

    .header-buttons .btn {
        white-space: nowrap;
        font-size: 14.5px;
    }
}

/* Medium screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
    .nav-center {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .search-box {
        width: 200px;
    }

    .header-buttons .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .logo-img {
        height: 48px;
        max-width: 170px;
    }

    .custom-navbar .container-fluid {
        padding: 0 15px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.navbar {
    overflow: visible !important;
}

.dropdown-menu {
    position: absolute;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Remove focus outline for mouse users */
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 1399px) and (min-width: 1200px) {

    .nav-center {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .search-box {
        max-width: 214px;
    }

    .header-buttons .btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .logo-img {
        height: 80px;
        width: 228px;
        max-width: 228px;
        transform: none;
    }
}

@media (max-width: 1279px) and (min-width: 1200px) {
    .logo-img {
        height: 70px;
        /* thodi kam height */
        width: 173px;
        max-width: 220px;
        /* thodi kam width */
    }
}



/* ==========================================
   Hero Section with Carousel
   ========================================== */
.hero-section {
    overflow: hidden;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    opacity: 0.9;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.8;
    opacity: 0.95;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    background: var(--white);
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: var(--transition-normal);
    font-family: var(--font-body);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-hero-outline {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 30px;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.hero-image {
    animation: fadeInRight 1s ease;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-normal);
    border: 2px solid rgba(245, 166, 35, 0.5);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(245, 166, 35, 0.6);
    border-color: var(--primary-color);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.carousel-indicators {
    bottom: 20px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(245, 166, 35, 0.3);
    transition: var(--transition-fast);
}

.hero-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

.hero-section .carousel-indicators button:hover {
    background-color: rgba(245, 166, 35, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Hero Carousel Controls */
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

/* ==========================================
   Section Headers - Oramet Brand
   ========================================== */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    font-family: var(--font-heading);
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
    font-family: var(--font-body);
}

/* ==========================================
   About Section - Oramet Brand
   ========================================== */

.about-image {
    height: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    /* control image height */
    object-fit: cover;
    /* image crop properly */
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    /* border: 3px solid transparent; */
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(46, 80, 144, 0.3);
    border-color: var(--primary-color);
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    font-family: var(--font-body);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-weight: 500;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: translateX(5px);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.feature-item:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.feature-item span {
    transition: var(--transition-fast);
}

.btn-read-more {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-family: var(--font-body);
    transition: all var(--transition-normal);
    display: inline-block;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

/* Optional: Add animated entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: center;
    }

    .feature-item:hover {
        transform: translateY(-3px);
    }
}

/* ==========================================
   Products Section - Product Range Cards - Oramet Brand
   ========================================== */
.product-range-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.product-range-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-range-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--light-bg);
}

.product-range-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(46, 80, 144, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.product-range-card:hover .product-range-image::after {
    opacity: 1;
}

.product-range-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-range-card:hover .product-range-image img {
    transform: scale(1.08);
}

.product-range-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-range-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    font-family: var(--font-heading);
}

.discover-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-body);
}

.discover-more-btn:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.discover-more-btn i {
    font-size: 20px;
    transition: var(--transition-fast);
}

.discover-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .product-range-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-range-title {
        font-size: 18px;
    }
}

/* ==========================================
   Industries We Serve Section - Oramet Brand
   ========================================== */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.industries-header {
    max-width: 700px;
    margin: 0 auto;
}

.industries-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.industries-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 80, 144, 0.1);
    padding: 40px;
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 50px;
    min-height: 500px;
    border: 2px solid rgba(245, 166, 35, 0.1);
}

/* Left Sidebar - Industry Navigation */
.industries-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.industry-nav-item {
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 3px 10px rgba(46, 80, 144, 0.2);
    font-family: var(--font-body);
}

.industry-nav-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(46, 80, 144, 0.35);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.industry-nav-item.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.35);
}

.industry-nav-item.active:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Right Content Area */
.industry-content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centers all industry content vertically */
    height: 100%;
}

.industry-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.industry-content.active {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    /* optional: center horizontally if smaller screen */
    height: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Industry Image */
.industry-image-container {
    flex: 0 0 300px;
}

.industry-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(46, 80, 144, 0.2);
    border: 8px solid var(--primary-color);
    transition: var(--transition-normal);
}

.industry-image:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Industry Text Content */
.industry-text {
    flex: 1;
}

.industry-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.industry-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    font-family: var(--font-body);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industries-wrapper {
        grid-template-columns: minmax(260px, 320px) 1fr;
        gap: 35px;
        padding: 35px;
    }

    .industry-image-container {
        flex: 0 0 250px;
    }

    .industry-image {
        width: 250px;
        height: 250px;
    }

    .industry-title {
        font-size: 28px;
    }
}


@media (max-width: 915px) {

    .industries-wrapper {
        grid-template-columns: 260px 1fr;
        gap: 25px;
        padding: 30px;
    }

    .industry-content.active {
        gap: 25px;
    }

    .industry-image {
        width: 220px;
        height: 220px;
    }

    .industry-title {
        font-size: 24px;
    }

    .industry-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .industries-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }

    .industries-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .industry-nav-item {
        padding: 15px 20px;
        font-size: 15px;
    }

    .industry-content.active {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .industry-image-container {
        flex: 0 0 auto;
    }

    .industry-image {
        width: 280px;
        height: 280px;
    }

    .industry-title {
        font-size: 26px;
    }

    .industry-description {
        font-size: 15px;
    }

    .industries-title {
        font-size: 24px;
    }

    .industries-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .industries-sidebar {
        grid-template-columns: 1fr;
    }

    .industry-image {
        width: 240px;
        height: 240px;
    }

    .industry-title {
        font-size: 24px;
    }
}

/* ==========================================
   Why Choose Us Section - Oramet Brand
   ========================================== */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    font-family: var(--font-body);
}

.feature-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    transition: height 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(255, 184, 77, 0.1));
    border: 3px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--secondary-color);
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}

/* Animation on scroll */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Certificates Section - Oramet Brand
   ========================================== */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(90deg,
            rgba(245, 166, 35, 0.05) 0%,
            rgba(46, 80, 144, 0.05) 50%,
            rgba(245, 166, 35, 0.05) 100%);
}

.carousel-track {
    display: flex;
    animation: scroll 5s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-logo {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    margin: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: grayscale(20%);
    opacity: 0.85;
    position: relative;
}

.cert-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.3s ease;
}

.cert-logo:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.cert-logo:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
    opacity: 1;
}

.cert-logo img,
.cert-logo svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cert-logo {
        width: 120px;
        height: 120px;
        margin: 0 40px;
    }
}

@media (max-width: 480px) {
    .cert-logo {
        width: 100px;
        height: 100px;
        margin: 0 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-dark) 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23F5A623" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.section-title {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(245, 166, 35, 0.3);
}

.testimonial-card:hover::before {
    opacity: 0.15;
    transform: scale(1.1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text p {
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.client-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 20px;
    box-shadow: var(--shadow-sm);
}

.client-details h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.company-name {
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    margin-top: 3px;
}

/* Testimonials Carousel Controls */
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.testimonials-section .carousel-control-prev {
    left: -25px;
}

.testimonials-section .carousel-control-next {
    right: -25px;
}

.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-section .carousel-indicators {
    bottom: -50px;
}

/* Testimonials Carousel Indicators */
.testimonials-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all var(--transition-fast);
}

.testimonials-section .carousel-indicators .active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonials-section {
        padding: 60px 0 80px;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        min-height: 450px;
    }

    .about-image img {
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .about-image {
        height: 100%;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.carousel-item:nth-child(1) .col-md-4:nth-child(1) .testimonial-card {
    animation-delay: 0.1s;
}

.carousel-item:nth-child(1) .col-md-4:nth-child(2) .testimonial-card {
    animation-delay: 0.2s;
}

.carousel-item:nth-child(1) .col-md-4:nth-child(3) .testimonial-card {
    animation-delay: 0.3s;
}


/* ==========================================
   Blog Section - Oramet Brand
   ========================================== */

.blog-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.blog-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.blog-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 80, 144, 0.15);
    border-color: var(--primary-color);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2) 0%, rgba(46, 80, 144, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: var(--font-body);
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
    text-decoration: none;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-link i {
    font-size: 14px;
    transition: var(--transition-fast);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Arrow Buttons */
.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-arrow.left {
    left: 0;
}

.blog-arrow.right {
    right: 0;
}

.blog-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.blog-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* View All Blogs Button */
.blog-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-view-all-blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    transition: all var(--transition-normal);
    z-index: -1;
}

.btn-view-all-blogs:hover::before {
    left: 0;
}

.btn-view-all-blogs:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 80, 144, 0.4);
    color: var(--white);
}

.btn-view-all-blogs i {
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.btn-view-all-blogs:hover i {
    transform: translateX(5px);
}

.btn-view-all-blogs:active {
    transform: translateY(-1px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .blog-slider-wrapper {
        padding: 0 50px;
    }

    .blog-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .blog-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .btn-view-all-blogs {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .blog-slider-wrapper {
        padding: 0 40px;
        margin-bottom: 35px;
    }

    .blog-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .blog-card {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }

    .blog-scroll {
        gap: 15px;
    }

    .btn-view-all-blogs {
        padding: 12px 28px;
        font-size: 14px;
    }

    .blog-cta-wrapper {
        margin-top: 30px;
    }
}


/* ==========================================
   Contact Section - Oramet Brand
   ========================================== */

.contact-section {
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-color);
}

.contact-left-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #ffffff;
    padding: 30px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.contact-left-info p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: var(--font-body);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    transform: rotateY(180deg);
    /* flips horizontally */
}

.contact-item div h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.8;
    font-family: var(--font-body);
}

.contact-item div p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    font-family: var(--font-body);
}

.contact-form-wrapper {
    padding: 15px 50px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.15);
    background-color: #ffffff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.captcha-wrapper {
    background: #f8f9fa;
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.captcha-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin: 0;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-body);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message Styles */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-left-info {
        padding: 40px 30px;
    }

    .contact-left-info h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .submit-btn {
        width: 100%;
    }

    .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .captcha-wrapper {
        width: 100%;
        justify-content: center;
    }
}

/* Loading Animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15rem;
}

/* ==========================================
   Footer - Oramet Brand
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    font-family: var(--font-body);
}

.footer .social-links{
    display: flex;
    gap: 12px;
}

.footer .social-icon {
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    transition: 0.2s ease;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    /* transform: translateY(-2px); */
}

.footer .social-icon:hover {
    background: rgba(245, 166, 35, 0.15);
    color: #fff;
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-2px);
}
/* .............. */


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-body);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    transform: rotateY(180deg);
    /* flips horizontally */
    display: inline-block;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    text-decoration: none;
    font-family: var(--font-body);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-family: var(--font-body);
}

/* .footer-logo {
    margin-bottom: 20px;
} */

.footer-logo img {
    max-width: 240px;   /* logo size control */
    height: auto;
    filter: brightness(0) invert(1); /* agar logo black hai to white bana dega */
}

/* ==========================================
   Modal Styles
   ========================================== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    font-size: 24px;
}

.modal-body {
    padding: 30px 25px;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 991px) {
    .top-info-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .contact-info,
    .social-links {
        gap: 10px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    /* .logo-img {
        width: 40px;
        height: 40px;
    } */

    .search-box {
        margin: 15px 0;
    }

    .header-buttons {
        margin-top: 15px;
    }

    .hero-slide {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Animations & Utilities
   ========================================== */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scroll to top button */
/* .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
} */

/* 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: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}