/* =====================================================
   SSK WEB SOLUTIONS - Main Stylesheet
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --primary-color: #D32F2F;
    --primary-dark: #B71C1C;
    --secondary-color: #0D2346;
    --secondary-light: #1A3A6E;
    --accent-color: #FF5722;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #212529;
    --border-color: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 1rem;
}

/* =====================================================
   Typography
   ===================================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-title-c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-c::after {
     content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   Header & Navbar
   ===================================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 5px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 75px;
    width: auto;
    margin-right: 10px;
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
}

.brand-text .ssk {
    color: var(--primary-color);
}

.brand-text .web {
    color: var(--secondary-color);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary-color) !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    outline: none;
    padding: 5px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    position: relative;
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    left: 0;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 35, 70, 0.95) 0%, rgba(211, 47, 47, 0.9) 100%);
    position: relative;
    overflow: hidden;
   /* padding-top: 20px;
    padding-bottom: 20px; */
}

.hero-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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
}

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

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
   
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    font-size: 1.05rem;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.about-feature-text h5 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* =====================================================
   Solutions Section
   ===================================================== */
.solutions-section {
    padding: 80px 0;
    background-color: var(--white);
}

.solution-card {
    background-color: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.solution-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.solution-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.solution-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================================================
   Applications Section
   ===================================================== */

.applications-section1 {
    padding: 80px 0;
  
    position: relative;
    overflow: hidden;
}

.applications-section1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.applications-section1 .section-title {
   
}
.applications-section1 .section-subtitle {
    
}




.applications-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.applications-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.applications-section .section-title {
    color: var(--white);
}

.applications-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.application-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.application-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.application-icon {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.application-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.application-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.application-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.application-features {
    margin-top: 20px;
    text-align: left;
}

.application-features li {
    color:  var(--gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.application-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* =====================================================
   Process Section
   ===================================================== */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.process-number {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.process-number span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.process-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.process-step:last-child .process-connector {
    display: none;
}

/* =====================================================
   Portfolio Section
   ===================================================== */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--white);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: left center;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 35, 70, 0.95) 0%, rgba(211, 47, 47, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

.portfolio-link {
    color: var(--white);
    font-size: 2rem;
    margin-top: 15px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

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

/* =====================================================
   Training Section
   ===================================================== */
.training-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.training-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.training-header {
    background-color: var(--secondary-color);
    padding: 25px;
    text-align: center;
}

.training-header h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.training-body {
    padding: 25px;
}

.training-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.training-feature:last-child {
    margin-bottom: 0;
}

.training-feature i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 3px;
}

.training-feature span {
    color: var(--gray);
    font-size: 0.95rem;
}

.training-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.training-price .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.training-price .duration {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-details h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form {
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

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

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* =====================================================
   Google Map
   ===================================================== */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.footer-widget {
    margin-bottom: 30px;
}

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

.footer-logo img {
    width:90%;
    margin-right: 10px;
    background-color: var(--white);
    padding: 3px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.footer-logo .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-logo .ssk {
    color: var(--primary-color);
}

.footer-logo .web {
    color: var(--white);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
   Page Banner
   ===================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0 60px;
    color: var(--white);
    position: relative;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item a {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: var(--white);
}

/* =====================================================
   About Page Specific
   ===================================================== */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image i {
    font-size: 4rem;
    color: var(--white);
}

.team-member h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
   Why Choose Us Section
   ===================================================== */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-choose-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================================================
   Call to Action Section
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 15px 40px;
    font-size: 1rem;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .about-content {
        margin-top: 30px;
    }

    .contact-form {
        margin-top: 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .service-card,
    .application-card,
    .training-card {
        padding: 25px 20px;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
}

/* =====================================================
   Animation Classes
   ===================================================== */
.aos-init {
    opacity: 0;
}

.aos-animate {
    opacity: 1;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}



.why-choose-item:hover::before {
    transform: scaleX(1);
}
.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}


.contact-box{
    padding:30px;
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
}

.contact-icon{
    font-size:30px;
    color:#0d6efd;
    margin-bottom:15px;
}

.contact-box h5{
    font-weight:600;
    margin-bottom:10px;
}

.contact-box p{
    color:#555;
}