/*

Ultimate Driving School

Professional Driving School in Kenya

*/

/* --** Reset CSS **-- */
* { margin: 0px; padding: 0px; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
html, body, button, input, select, textarea { font-family: Arial; font-size: 12px; color: #8c806e; }
ul, ol { margin-top: 0; margin-bottom: 10px; }
ul ul { margin-bottom: 0; }
li { font-size: 13px; margin: 5px 0px 10px 0px; }
pre { overflow: auto; }
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { font-weight: normal; text-align: left; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; quotes: none; }
a img { border: 0; }
a, input { outline: none; }
a { color: #F06;  }
a:hover { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 5px 0px 15px 0px; clear: both; font-weight: lighter; }
h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }
p {font-size: 13px; margin: 5px 0px 15px 0px; }

img { -ms-interpolation-mode: bicubic; border: 0; height: auto; max-width: 100%; vertical-align: middle; display: block;  }
figure { margin: 0; }
::-webkit-input-placeholder { color: rgba(51, 51, 51, 0.7); }
:-moz-placeholder { color: rgba(51, 51, 51, 0.7); }
::-moz-placeholder { color: rgba(51, 51, 51, 0.7); opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */ }
:-ms-input-placeholder { color: rgba(51, 51, 51, 0.7); }
input:focus, textarea:focus { background-color: #fff; border: 1px solid #c1c1c1; border: 1px solid rgba(51, 51, 51, 0.3); color: #333; }
input:focus, select:focus { outline: 2px solid #c1c1c1; outline: 2px solid rgba(51, 51, 51, 0.3); }
.hide { display: none;}

.clear { clear: both; height: 0px; overflow: hidden; }

/* <<< Design Holder >>> */
.DesignHolder { position: relative; display: block; width: 100%; min-height: 100%; }

/* <<< Layout Frame >>> */
.LayoutFrame { margin: 0 auto; width: 100%; display: block; }

/* <<< Body >>> */
body { 
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* =====================
   Hero Section
   ===================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 180px 0 0; /* Removed bottom padding */
    margin: 0;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

/* Typewriter Effect */
.typewriter {
    color: #ff9000;
    position: relative;
    display: inline-block;
}

.typewriter::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #ff9000;
    animation: blink 0.7s infinite;
    font-weight: normal;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: #ff9000;
    display: block;
    font-weight: 700;
}

.hero-text .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background: #ff9000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 144, 0, 0.4);
}

.btn-primary::before {
    background: #e68600;
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section Features Grid - 4x1 Layout */
.hero-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto 0;
    max-width: 1300px;
    width: 100%;
    padding: 0 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    min-height: 90px;
    gap: 10px;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ff9000;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #ff9000;
    color: #fff;
    transform: rotateY(180deg);
}

.feature-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text .lead {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto 0;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px 25px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* <<< Header >>> */
header { width: 100%; position: fixed; top: 0px; left: 0px; height: 105px; background: rgba(0, 0, 0, 0.5); z-index: 9; }
header .Center { max-width: 1100px; margin: auto; }
/* Logo Styles */
header .site-logo {
    float: left;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    display: flex;
    align-items: center;
}

/* Logo Image */
.logo-image {
    height: 50px;
    width: auto;
    border-radius: 12px;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-link:hover .logo-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.highlight {
    color: #ffc107;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Header Shrunk State */
header.smaller {
    height: 70px;
    background: rgba(10, 25, 47, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.smaller .site-logo {
    padding: 10px 0;
}

header.smaller .logo-image {
    height: 40px;
    border-radius: 10px;
}

header.smaller .logo-text {
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .logo-text {
        font-size: 20px;
    }
    
    header.smaller .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 18px;
    }
    
    header.smaller .logo-text {
        font-size: 16px;
    }
}

/* <<< Navigation >>> */
.Navigation { 
    float: right; 
    width: 68.18%; 
    margin-right: 11px; 
    background: linear-gradient(145deg, #083F08, #0a4a0a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0 15px;
}

.Navigation ul { 
    list-style: none; 
    margin: 0; 
    padding: 0;
    float: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.Navigation li { 
    position: relative; 
    margin: 0 2px;
    height: 100%;
    display: flex;
    align-items: center;
}

.Navigation li a { 
    padding: 0 25px; 
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.95); 
    font-family: 'Poppins', 'Open Sans', sans-serif; 
    font-weight: 500; 
    text-decoration: none; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.Navigation li a:hover,
.Navigation li.active a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.Navigation li a:hover::after,
.Navigation li.active a::after {
    width: 70%;
}

/* Mobile Menu Toggle */
.mobile { 
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile .fa { 
    padding: 12px 14px; 
    font-size: 24px; 
    color: #fff; 
    background: #0a4a0a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile .fa:hover { 
    background: #083F08;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Mobile Menu Styles */
@media (max-width: 991px) {
    .mobile { 
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .menumobile {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #0a4a0a;
        z-index: 999;
        transition: all 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
        padding: 70px 0 30px;
    }
    
    .menumobile.active {
        right: 0;
    }
    
    .Navigation {
        float: none;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .Navigation ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px 0;
    }
    
    .Navigation li {
        width: 100%;
        height: auto;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .Navigation li a {
        padding: 15px 25px;
        font-size: 14px;
        justify-content: flex-start;
    }
    
    .Navigation li a::after {
        display: none;
    }
    
    .Navigation li a:hover,
    .Navigation li.active a {
        background: rgba(255,255,255,0.1);
        padding-left: 30px;
    }
    
    .mobile .fa-times {
        display: none;
    }
    
    .mobile.active .fa-bars {
        display: none;
    }
    
    .mobile.active .fa-times {
        display: block;
    }
    
    /* Overlay when mobile menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Sticky Header */
header.smaller {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 74, 10, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-out;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header.smaller .Navigation {
    background: transparent;
    box-shadow: none;
}

header.smaller .Navigation li a {
    padding: 0 20px;
    height: 70px;
}

header.smaller .site-logo h1 a {
    font-size: 20px;
    padding: 2px 0;
    transition: all 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.mobile.closed .fa-times { display: block; }

/* <<< Banner Section >>> */
.Banner_sec { width: 100%; background: url(../img/Banner-bg.jpg) top center no-repeat; height: 687px; position: relative; background-size: cover; }
.Banner_sec .bannerside { width: 100%; position: absolute; top: 256px; left: 0px; }
.Banner_sec .Center { max-width: 1100px; margin: auto; }
.Banner_sec .leftside { padding: 92px 0px 0px 0px; width: 28.90%; float: left; }
.Banner_sec .leftside h3 { font-size: 36px; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: 800; text-transform: uppercase; margin: 0px; line-height: 34px;}
.Banner_sec .leftside h3 span { color: #ff9000; font-family: 'Open Sans', sans-serif; font-weight: 600; display: block; }
.Banner_sec .leftside p { padding: 16px 0px 26px 0px; font-size: 16px; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: 600; font-style: italic; margin: 0px; word-spacing: 2px; line-height: 22px; }
.Banner_sec .leftside a { padding: 11px 16px; font-size: 14px; color: #fff; font-family: 'Open Sans', sans-serif; font-weight: 600; text-transform: uppercase; text-decoration: none; display: inline-block; border: solid 1px #b0bdc8; background: rgba(64, 93, 118, 0.8); transition: all 0.3s ease; }
.Banner_sec .leftside a:hover { background: #ff9000; color: #fff; border: solid 1px #ff9000; }
.Banner_sec .rightside { width: 68.36%; float: right; position: relative; }
.Banner_sec .rightside .bx-wrapper { position: relative; z-index: 1; }
.Banner_sec .rightside ul { list-style: none; margin: 0px; }
.Banner_sec .rightside li { padding: 0px; margin: 0; float: none!important; }
.Banner_sec .rightside #slider { width: 100%; float: right;  position: relative; z-index: 1; }
.Banner_sec .rightside .Slider .text { padding: 25px 47px 21px 30px; position: absolute; bottom: 0px; left: 0px; width: 100%; background: rgba(0, 0, 0, 0.7); }
.Banner_sec .rightside .Slider .text .Icon { width: 38%; float: left; }
.Banner_sec .rightside .Slider .text ul { list-style: none; margin: 0px; }
.Banner_sec .rightside .Slider .text li { float: left!important; padding: 0px 30px 0px 10px; margin: 0px; }
.Banner_sec .rightside .Slider .text li a { display: block; font-size: 14px; color: #fff; text-decoration: none; font-family: 'Open Sans', sans-serif; font-weight: 400; transition: all 0.3s ease;}
.Banner_sec .rightside .Slider .text li:last-child { padding: 0px; }
.Banner_sec .rightside .Slider .text li:hover a { color: #ff9000!important;}
.Banner_sec .rightside .Slider .text li a .fa { padding: 13px; margin-right: 10px; color: #fff; border-radius: 50px; border: solid 2px #fff; transition: all 0.3s ease; }
.Banner_sec .rightside .Slider .text li:hover a .fa { background: #ff9000; color: #fff; border: solid 2px #ff9000; }
.Banner_sec .rightside .Slider .text li:last-child { padding-right: 0px; padding-left: 0px;}
.Banner_sec .rightside .Slider .text .Lorem { float: right; width: 31%; }
.Banner_sec .rightside .Slider .text .Lorem p { padding-top: 5px; font-size: 18px; color: #fff; margin: 0px; font-family: 'Open Sans', sans-serif; font-weight: 400; text-transform: uppercase; text-align: right; line-height: 19px; }
.Banner_sec .rightside .Slider .text .Lorem p span { font-size: 14px; text-align: right; color: #ff9000; display: block; text-transform: capitalize;}
.Banner_sec .rightside .prevBtn { width: 42px; height: 42px; display: block; text-indent: -9999px; background: url(../img/prev-arrow.png) no-repeat; position: absolute; top: 213px; left: 49px;  z-index: 1; opacity: 0.5; transition: opacity 0.3s ease; }
.Banner_sec .rightside .prevBtn:hover {  opacity: 1; }	
.Banner_sec .rightside .nextBtn { width: 42px; height: 42px; display: block; text-indent: -9999px; background: url(../img/next-arrow.png) no-repeat; position: absolute; top: 213px; right: 47px;  z-index: 1; opacity: 0.5; transition: opacity 0.3s ease; }
.Banner_sec .rightside .nextBtn:hover { opacity: 1; }	
.Banner_sec .rightside .Shadow { position: absolute; bottom: -3px; left: -25px; max-width: none; }

/* <<< bg color>>> */
.bgcolor {  height: 74px; width: 100%; background: rgba(249,250,251,1); background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(249,250,251,1)), color-stop(0%, rgba(249,250,251,1)), color-stop(100%, rgba(225,228,231,1)));
	background: linear-gradient(to bottom, rgba(249,250,251,1) 0%, rgba(249,250,251,1) 0%, rgba(225,228,231,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fafb', endColorstr='#e1e4e7', GradientType=0 ); }
	
	
	/* <<< Container >>> */
	#Container { overflow: hidden; width: 100%; }

	/* <<< About Section >>> */
	.About_sec { padding: 115px 0px 88px 0px ; width: 100%; overflow: hidden; }
	.About_sec .Center { max-width: 1100px; margin: auto; overflow: hidden; text-align: center; }
	.About_sec h2 { font-size: 56px; color: #000; font-family: 'Oswald', sans-serif; font-weight: 400; margin: 0px; text-transform: uppercase; line-height: 60px; letter-spacing: -0.4px; }
	.About_sec p { padding: 24px 0px 35px 0px; font-size: 14px; color: #979797; margin: 0px; font-family: 'Open Sans', sans-serif; line-height: 25px; font-weight: 400; }
	.About_sec .Line { border: solid 1px #ff9408; height: 2px; width: 252px; margin: auto; }
	.About_sec .Tabside { padding: 90px 0px; width: 100%;}
	.About_sec .Tabside ul { list-style: none; margin: 0px; padding-bottom: 59px; }
	.About_sec .Tabside li { float: none; padding: 0px; margin: 0px -2px; display: inline-block;}
	.About_sec .Tabside li a { padding: 14px 40px 13px 40px; font-size: 18px; color: #989898; font-family: 'Open Sans', sans-serif; font-weight: 400; text-decoration: none; text-transform: uppercase; border: solid 1px #d5d5d5; display: block; transition: all 0.3s ease; }
	.About_sec .Tabside li a:hover, .About_sec .Tabside li a.activeLink { border: solid 1px #ff9408; background: #ff9408; color: #fff;}
	.About_sec .Tabside .TabImage { width: 43.63%; float: left; position: relative; }
	.About_sec .Tabside .TabImage .img1 { position: absolute; top: 0px; left: 42px; height: 260px; background: url(../img/about-shadow.png) no-repeat; background-position: 25px 223px; }
	.About_sec .Tabside .TabImage .img1 img { padding: 5px; border: solid 1px #ececec; background: #fff;  }
	.About_sec .Tabside .TabImage .img2 { position: absolute; top: 40px; left: 2px; height: 260px; background: url(../img/about-shadow.png) bottom center no-repeat; background-position: 0px 223px; }
	.About_sec .Tabside .TabImage .img2 img { padding: 5px; border: solid 1px #ececec; background: #fff;  }
	.About_sec .Tabside .Description { width: 54.3%; float: right; text-align: left; margin-top: -6px;}
	.About_sec .Tabside .Description h3 { font-size: 24px; color: #000; margin: 0px; text-transform: uppercase; font-family:'Open Sans'; line-height: 29px; }
	.About_sec .Tabside .Description h3 span { padding-left: 3px; font-size: 14px; color: #ff9000; display: block; }
	.About_sec .Tabside .Description p { padding: 21px 0px 4px 0px; font-size: 14px; color: #979797; margin: 0px; font-family:'Open Sans'; line-height: 25px; }
	.About_sec .Tabside .Description p .cyan { font-size: 16px; color: #08c2ff; }


	/* <<< Services Section >>> */
	.Services_sec{ padding: 114px 0px 90px 0px ; width: 100%; overflow: hidden; background: url(../img/Services-bg.jpg) top center no-repeat; background-size: cover; }
	.Services_sec .Center { max-width: 1100px; margin: auto; overflow: hidden; text-align: center; }
	.Services_sec h2 { font-size: 56px; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 400; margin: 0px; text-transform: uppercase; line-height: 60px; }
	.Services_sec p { padding: 25px 0px 35px 0px; font-size: 14px; color: #d8dfe5; margin: 0px; font-family: 'Open Sans', sans-serif; line-height: 25px; font-weight: 400; }
	.Services_sec .Line { border: solid 1px #ff9408; height: 2px; width: 252px; margin: auto; }
	.Services_sec .Serviceside { padding: 76px 0px 30px 0px; width: 100%; overflow: hidden; }
	.Services_sec .Serviceside ul { list-style: none; margin: 0px }
	.Services_sec .Serviceside li { float: left; padding: 0px; margin: 0px 40px 0px 0px; text-align: center; width: 245px; }
	.Services_sec .Serviceside li:last-child { margin-right: 0px;}
	.Services_sec .Serviceside li.Development { padding: 44px 0px 161px 0px; background: url(../img/Development-bg.jpg) no-repeat;box-shadow: 1px 4px 7px -4px rgba(0,0,0,0.75); }	.Services_sec .Serviceside li.Development a { text-decoration: none; background: url(../img/Development-cn.png) top center no-repeat; display: block; }
	.Services_sec .Serviceside li.Development h4 { padding: 138px 0px 0px 0px;  font-size: 17px; color: #03a4df; text-decoration: none; text-transform: uppercase; font-family: 'Open Sans', sans-serif; font-weight: 400;  }
	.Services_sec .Serviceside li.Development a:hover h4 { color: #fff; background: url(../img/Develop-hover-icn.png) top center no-repeat; }

	.Services_sec .Serviceside li.Desdin { padding: 44px 0px 159px 0px;background: url(../img/desgin-bg.jpg) no-repeat; box-shadow: 1px 4px 7px -4px rgba(0,0,0,0.75);  }
	.Services_sec .Serviceside li.Desdin a { text-decoration: none; background: url(../img/desgin-icn.png) top center no-repeat; display: block; }
/* =================================
   Services Section - Modern & Professional
   ================================= */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ff9000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.section-subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #ff9000;
    border-radius: 3px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 144, 0, 0.4);
}

.service-card:hover:before {
    opacity: 1;
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9000;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.service-icon:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 144, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon:after {
    transform: scale(1.2);
    background: rgba(255, 144, 0, 0.15);
}

.service-content {
    padding: 0 30px 40px;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #fff;
    margin: 10px 0 20px;
    font-weight: 600;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 15px 0 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #ff9000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(255, 144, 0, 0.3);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #e67e00;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.Services_sec {
    position: relative;
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.Services_sec .Center {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Services_sec h2 {
    text-align: center;
    color: #0f172a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.Services_sec h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
}

.Services_sec > p {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.Services_sec .Serviceside {
    margin-top: 40px;
}

.Services_sec .Serviceside ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.Services_sec .Serviceside li {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.Services_sec .Serviceside li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff9000;
}

.Services_sec .Serviceside li a {
    display: block;
    padding: 40px 30px;
    text-decoration: none;
    color: #334155;
    height: 100%;
    transition: all 0.3s ease;
}

.Services_sec .Serviceside li h4 {
    font-size: 1.4rem;
    color: #0f172a;
    margin: 20px 0 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Services_sec .Serviceside li h4 i {
    font-size: 1.2em;
    color: #ff9000;
}

.Services_sec .Serviceside li p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-cta .btn {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-cta .btn-primary {
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.4);
}

.services-cta .btn-outline {
    background: transparent;
    border: 2px solid #ff9000;
    color: #ff9000;
}

.services-cta .btn-outline:hover {
    background: rgba(255, 144, 0, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .Services_sec .Serviceside ul {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-cta .btn {
        width: 100%;
    }
}

.Services_sec .Serviceside li.Concept { padding: 40px 30px; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
	.Services_sec .Serviceside li.Concept h4 { padding: 138px 0px 0px 0px; font-size: 18px; color: #ae382d; text-decoration: none; text-transform: uppercase;font-family: 'Open Sans', sans-serif; font-weight: 400; }
	.Services_sec .Serviceside li.Concept a:hover h4 { color: #fff; background: url(../img/concept-hover-icn.png) top center no-repeat; }

	.Services_sec .Serviceside li.System { padding: 44px 0px 159px 0px;background: url(../img/systam-bg.jpg) no-repeat; box-shadow: 1px 4px 7px -4px rgba(0,0,0,0.75);  }
	.Services_sec .Serviceside li.System a { text-decoration: none; background: url(../img/systam-icn.png) top center no-repeat; display: block; }
	.Services_sec .Serviceside li.System h4 { padding: 138px 0px 0px 0px;  font-size: 18px; color: #5e5f61; text-decoration: none; letter-spacing: -1px; text-transform: uppercase; font-family: 'Open Sans', sans-serif; font-weight: 400;  }
	.Services_sec .Serviceside li.System a:hover h4 { color: #fff; background: url(../img/systam-hover-icn.png) top center no-repeat;}
	
	/* <<< Pricing Section >>> */
	.Pricing_sec { padding: 112px 0px 108px 0px ; width: 100%; overflow: hidden; background: #ececec; }
	.Pricing_sec .Center { max-width: 1100px; margin: auto; overflow: hidden; text-align: center; }
	.Pricing_sec h2 { font-size: 57px; color: #000; font-family: 'Oswald', sans-serif; font-weight: 400; margin: 0px; text-transform: uppercase; line-height: 60px; }
	.Pricing_sec p { padding: 26px 0px 35px 0px; font-size: 14px; color: #8f8f8f; margin: 0px; font-family: 'Open Sans', sans-serif; line-height: 25px; font-weight: 400; }
	.Pricing_sec .Line { border: solid 1px #ff9408; height: 2px; width: 252px; margin: auto; }
	.Pricing_sec .Pricingside { padding: 75px 0px 0px 0px; width: 100%; overflow: hidden; text-align: initial; }
	.Pricing_sec .Pricingside ul { list-style: none; margin: 0px; }
	.Pricing_sec .Pricingside li { float: none; padding: 0px; margin: 0px 0px 11px 0px; height: 103px; background: #fff; text-align: center; }
	.Pricing_sec .Pricingside li .Basic { width: 55px; float: left; display: table; height: 103px; background: #ff9408; transition: all ease 0.3s; }
	.Pricing_sec .Pricingside li .Basic h5 { display: table-cell; vertical-align: middle; font-size: 17px; color: #2d2d2d; font-family: 'Oswald', sans-serif; font-weight: 400; text-transform: uppercase; margin: 0px; -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -o-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); clear: none; text-align: center; }
	.Pricing_sec .Pricingside li .Dollar { padding: 22px 0px 21px 0px; width: 205px; float: left; background: #2d2d2d; transition: all ease 0.3s;}
	.Pricing_sec .Pricingside li .Dollar h2 { font-size: 34px; color: #ff9408; font-family: 'Oswald', sans-serif; font-weight: 400; letter-spacing: 1px; }

	.Pricing_sec .Pricingside li .Band { padding: 1px 30px; width: 173px; float: left; background: url(../img/divider.png) right 16px no-repeat; transition: all 0.3s ease; }
	.Pricing_sec .Pricingside li .Band p { font-size: 16px; color: #979797; margin: 0px; font-family: 'Oswald', sans-serif; font-weight: 400; text-transform: uppercase; line-height: 20px; }
	.Pricing_sec .Pricingside li .Band p span { display: block; }
	.Pricing_sec .Pricingside li .Band.last { background: none; }
	.Pricing_sec .Pricingside li .Order {width: 147px; float: left; display: table; height: 103px;  }
	.Pricing_sec .Pricingside li .Order a { font-size: 17px; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 400; text-decoration: none;  display: table-cell; vertical-align: middle; text-transform: uppercase;  background: #2d2d2d; }

	.Pricing_sec .Pricingside li:hover .Basic { padding: 0px; background: #2d2d2d; }
	.Pricing_sec .Pricingside li:hover .Basic h5 { color: #fff; }
	.Pricing_sec .Pricingside li:hover .Band { padding: 0px; background: #2d2d2d url(../img/divider-black.png) right 16px no-repeat; height: 103px; }
	.Pricing_sec .Pricingside li:hover .Band p { color: #fff; }
	.Pricing_sec .Pricingside li:hover .Dollar { background: #ff9408; color: #fff; }
	.Pricing_sec .Pricingside li:hover .Dollar h2 { color: #fff; }

	.Pricing_sec .Pricingside li:hover .Order a { background: #ff9408; color: #fff; transition: all 0.3s ease;}

	

	/* <<< Contact Section >>> */
	.Contact_sec { width: 100%; overflow: hidden; }
	.Contact_sec .Contactside { background: url(../img/Contact-bg.jpg) top center no-repeat; background-size: cover; overflow: hidden;}
	.Contact_sec .Center { padding: 115px 0px 77px 0px;  max-width: 1100px; margin: auto; overflow: hidden; text-align: center; }
	.Contact_sec h2 { font-size: 57px; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 400; margin: 0px; text-transform: uppercase; line-height: 60px;}
	.Contact_sec p { padding: 24px 0px 35px 0px; font-size: 14px; color: #ebebeb; margin: 0px; font-family: 'Open Sans', sans-serif; line-height: 25px; font-weight: 400; }
	.Contact_sec .Line { border: solid 1px #ff9408; height: 2px; width: 252px; margin: auto; }
	.Contact_sec .Pricingside { padding: 70px 0px 10px 0px; width: 100%; overflow: hidden; text-align: initial; }
	
	/* <<< Map >>> */
	.Map { position: relative; z-index: 1; width: 100%; overflow: hidden; box-shadow: 0px 1px 12px 3px #242424;
		-webkit-box-shadow: 0px 1px 12px 3px #242424; -moz-box-shadow: 0px 1px 12px 3px #242424; -o-box-shadow: 0px 1px 12px 3px #242424; }
		.Map #GoogleMap { height: 399px; }

		/* <<< Get Section >>> */
		.Get_sec { width: 100%; overflow: hidden; background: url(../img/Get-bg.jpg) top center no-repeat; background-size: cover; }
		.Get_sec .Mid { padding: 76px 0px 95px 0px; max-width: 1100px; margin: auto; overflow: hidden; }
		.Get_sec .Leftside { width: 48.2%; float: left; }
		.Get_sec .Leftside fieldset { padding: 0px; margin: 0px; }
		.Get_sec .Leftside p { padding: 0px; margin: 0px 0px 25px 0px;  }
		.Get_sec .Leftside input.field { padding: 18px 20px 17px 20px; font-size: 14px; color: #979797; font-family: 'Open Sans', sans-serif; font-weight: 400; border: 0px; width: 100%; box-shadow: 0px 2px 6px 0px #242424; -webkit-box-shadow: 0px 2px 6px 0px #242424; -moz-box-shadow: 0px 2px 6px 0px #242424;
		-o-box-shadow: 0px 2px 6px 0px #242424; border-radius: 0px; }
		.Get_sec .Leftside input:focus { outline: none;}
		.Get_sec .Leftside textarea { padding: 18px 20px 17px 20px; font-size: 14px; color: #979797; font-family: 'Open Sans', sans-serif; font-weight: 400; border: 0px; width: 100%; height: 156px; resize:none; box-shadow: 0px 2px 6px 0px #242424; -webkit-box-shadow: 0px 2px 6px 0px #242424; -moz-box-shadow: 0px 2px 6px 0px #242424; -o-box-shadow: 0px 2px 6px 0px #242424; border-radius: 0px; }
		.Get_sec .Leftside textarea:focus { outline: none;}
		.Get_sec .Leftside .button { padding: 16px 0px 17px 0px; margin-top: -3px; font-size: 14px; color: #e9ecee; font-family: 'Open Sans', sans-serif; font-weight: 700; text-align: center; background: #e2850a; border: 0px; text-transform:uppercase; width: 100%; cursor: pointer; box-shadow: 0px 2px 6px 0px #242424; -webkit-box-shadow: 0px 2px 6px 0px #242424; -moz-box-shadow: 0px 2px 6px 0px #242424; -o-box-shadow: 0px 2px 6px 0px #242424; border-radius: 0px; transition: all 0.3s ease;}
		.Get_sec .Leftside .button:hover { background: #2d2d2d; color: #fff;}
		.Get_sec .Rightside { padding-top: 12px; width: 48.18%; float: right;}
		.Get_sec .Rightside h3 { padding-bottom: 44px; font-size: 46px; color: #f88e04; font-family: 'Oswald', sans-serif; font-weight: 400; margin: 0px; text-transform:uppercase; line-height: 46px; }
		.Get_sec .Rightside address { padding: 0px 0px 27px 65px; margin-left: 3px; font-size: 14px; color: #ebedf1; font-family: 'Open Sans', sans-serif; font-weight: 400; font-style: normal; background: url(../img/location-icn.png) left 4px no-repeat; line-height: 24px;  }
		.Get_sec .Rightside address.Number { background: url(../img/phone-icn.png) left 5px no-repeat; }
		.Get_sec .Rightside address.Email { margin-left: 4px; background: url(../img/mail-icn.png) left 0px no-repeat; }
		.Get_sec .Rightside address.Email a { text-decoration: none; color: #ebedf1; }
		.Get_sec .Rightside address.Email a:Hover { color: #f88e04; }
		.Get_sec .Rightside ul { list-style: none; margin: 0px; padding: 27px 0px 0px 3px; }
		.Get_sec .Rightside li { float: left; padding: 0px; margin: 0px  22px 0px 0px; }
		.Get_sec .Rightside li a { text-decoration: none; }

		/* <<< footer >>> */
		footer { overflow: hidden; width: 100%; text-align: center; background: rgba(0, 0, 0, 0.6); }
		footer .Cntr { padding:  28px 0px; max-width: 1100px; margin: auto;}
		footer .Cntr p { padding: 0px; font-size: 13px; color: #a9abad; font-family:'Open Sans'; margin: 0px; }
		footer .Cntr a { color: #a9abad; text-decoration: none; }
		footer .Cntr a:hover { color: #fff; }


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   #loader-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; }
   #loader { display: block; position: relative; left: 50%; top: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 3px solid transparent; border-top-color: #3498db; -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
   	animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ z-index: 1001; }
   	#loader:before { content: ""; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px; border-radius: 50%; border: 3px solid transparent;
   	border-top-color: #e74c3c; -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
   animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ }
   #loader:after { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px; border-radius: 50%; border: 3px solid transparent;
border-top-color: #f9c922; -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */ animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */ }

@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

#loader-wrapper .loader-section { position: fixed; top: 0; width: 51%; height: 100%; background: #222222; z-index: 1000; -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */ transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
	transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */  
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
	transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */  
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;  
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */  /* IE 9 */
	transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */  
	transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
	display: none;
}

/* =====================
   About Section - Modern Styling
   ===================== */
.About_sec {
    padding: 0 0 100px 0;
    background: #f9fafb;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: #ff9000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 30px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #ff9000;
    display: inline-block;
}

.header-divider i {
    color: #ff9000;
    margin: 0 15px;
    font-size: 1.2rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 380px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Make the last card taller to fit content */
.about-card:last-child {
    min-height: 450px;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.05);
}

.about-card.featured {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.about-card.featured:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-card-image {
    position: relative;
    width: 42%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.about-card:hover .about-card-image img {
    transform: scale(1.05);
}

.about-card:hover .about-card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-card:hover .card-overlay {
    opacity: 0.9;
}

.card-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff9000, #ffab3f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(255, 144, 0, 0.3);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.about-card:hover .card-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.4);
}

.about-card-content {
    padding: 45px;
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-top: 40px;
}

/* Adjust content padding for the last card */
.about-card:last-child .about-card-content {
    justify-content: flex-start;
    padding-top: 45px;
}

.about-card h3 {
    color: #1a365d;
    font-size: 1.6rem;
    margin: 0 0 18px 0;
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff9000;
    border-radius: 3px;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff9000;
}

.about-card p {
    color: #4a5568;
    line-height: 1.75;
    margin: 0 0 24px 0;
    font-size: 1.02rem;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.feature-list {
    margin: 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.6;
    list-style: none;
}

.feature-list i {
    color: #ff9000;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.vision-highlight {
    background: #f8fafc;
    border-left: 4px solid #ff9000;
    padding: 18px 22px;
    margin: 25px 0 0 0;
    position: relative;
    border-radius: 0 8px 8px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.vision-highlight i {
    color: #ff9000;
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.2;
}

.vision-highlight p {
    margin: 0;
    padding-left: 28px;
    font-style: normal;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1.02rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
}

.value-item {
    background: #f8fafc;
    padding: 16px 12px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #edf2f7;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.value-item:hover {
    background: #ff9000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 144, 0, 0.2);
    border-color: #ff9000;
}

.value-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.value-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    color: #ff9000;
    width: 48px;
    height: 48px;
    background: rgba(255, 144, 0, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-item:hover i {
    color: #fff;
}

.value-item span {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #2d3748;
    transition: color 0.3s ease;
}

.value-item:hover span {
    color: #fff;
}

/* Stats Section */

/* =====================
   Courses Section - Modern Design
   ===================== */
.Courses_sec {
    padding: 120px 0 100px;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.Courses_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #ff9000, #ff6b00);
    transition: height 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 144, 0, 0.1);
}

.course-card:hover::before {
    height: 100%;
}

.course-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 144, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.course-card:hover .course-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 144, 0, 0.2);
}

.course-content h3 {
    color: #1a202c;
    font-size: 1.4rem;
    margin: 0 0 18px 0;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.course-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.course-card:hover .course-content h3::after {
    width: 80px;
}

.course-content p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-size: 1.02rem;
    position: relative;
    z-index: 1;
}

.courses-cta {
    text-align: center;
    margin: 100px 0 40px;
    padding: 50px 0 0;
    position: relative;
}

.courses-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    border-radius: 3px;
}

.highlight-text {
    font-size: 1.6rem;
    color: #2d3748;
    font-weight: 700;
    margin: 0 auto 30px;
    letter-spacing: -0.5px;
    max-width: 800px;
    line-height: 1.4;
    background: linear-gradient(90deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    border-radius: 3px;
}

/* Decorative Elements */
.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    
    .course-card {
        padding: 30px 25px;
    }
}

@media (max-width: 991px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .Courses_sec {
        padding: 100px 0 80px;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 20px;
    }
    
    .course-card {
        padding: 30px 25px;
    }
    
    .highlight-text {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    .courses-cta {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .Courses_sec {
        padding: 80px 0 60px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 2.4rem;
    }
}

.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/Banner-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 84, 166, 0.7);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 10px 0;
    display: block;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-card {
        height: auto;
        flex-direction: column;
    }
    
    .about-card-image,
    .about-card-content {
        width: 100%;
    }
    
    .about-card-image {
        height: 250px;
    }
    
    .about-card.featured {
        transform: none;
    }
    
    .about-card.featured:hover {
        transform: none;
    }
    
    .stat-item:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-card {
        flex-direction: column;
        height: auto;
    }
    
    .about-card-image,
    .about-card-content {
        width: 100%;
    }
    
    .about-card-image {
        height: 220px;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-choose-us .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why-choose-us .section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.why-choose-us .section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: #ff9000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.why-choose-us .section-subtitle:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: #ff9000;
    border-radius: 3px;
}

.why-choose-us .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    max-width: 200px;
}

.why-choose-us .divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.why-choose-us .header-divider i {
    color: #ff9000;
    margin: 0 15px;
    font-size: 1.2rem;
}

.why-choose-us .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 144, 0, 0.4);
}

.feature-item:hover:before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    color: #ff9000;
    background: rgba(255, 144, 0, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    color: #fff;
    transform: scale(1.1);
}

.feature-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.mission-statement {
    text-align: center;
    margin: 80px auto 0;
    padding: 40px 20px;
    max-width: 800px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 144, 0, 0.3);
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    border-radius: 3px;
}

.mission-statement .highlight-text {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.mission-statement .highlight-text span {
    color: #ff9000;
    position: relative;
    text-shadow: 0 0 15px rgba(255, 144, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-section .features-grid {
        max-width: 100%;
        padding: 0 30px;
    }
    .hero-section .feature-item {
        padding: 15px 10px;
        min-height: 80px;
    }
    .hero-section .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
        margin: 0 12px 0 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2.2rem;
    }
    
    .mission-statement .highlight-text {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
    .hero-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
        max-width: 700px;
    }
    .hero-section .feature-item {
        padding: 18px 15px;
        min-height: 100px;
        flex-direction: column;
        text-align: center;
    }
    .hero-section .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
        margin: 0 0 10px 0;
    }
    
    @media (max-width: 480px) {
        .hero-section .features-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            gap: 12px;
        }
        .hero-section .feature-item {
            flex-direction: row;
            text-align: left;
            min-height: 80px;
            padding: 15px 20px;
        }
        .hero-section .feature-icon {
            margin: 0 15px 0 0;
        }
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us .section-subtitle {
        font-size: 1rem;
    }
    
    .mission-statement .highlight-text {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

/* =================================
   Testimonials Section
   ================================= */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
    z-index: 1;
}

.testimonials-section .Center {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.testimonials-slider {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    position: relative;
}

.testimonial-slide {
    padding: 20px;
    outline: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 144, 0, 0.2);
}

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

.testimonial-rating {
    color: #ffc107;
    font-size: 0;
    margin: 0 auto 25px;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonial-rating i {
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 50px;
    font-family: Georgia, serif;
    color: #e2e8f0;
    position: absolute;
    line-height: 1;
}

.testimonial-content p::before {
    top: -10px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
    position: relative;
    padding-top: 20px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff9000, transparent);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4299e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #2d3748;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #cbd5e0;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #4299e1;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #a0aec0;
    opacity: 1;
    transition: all 0.3s ease;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #4299e1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .slick-prev {
        left: -20px;
    }
    
    .slick-next {
        right: -20px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto 15px;
    }
    
    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

/* =================================
   Testimonials Section - Modern & Sleek
   ================================= */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/testimonial-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section .Center {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    padding: 20px 0;
}

.testimonial-slide {
    padding: 20px;
    outline: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-content {
    position: relative;
    margin: 0 auto 25px;
    max-width: 700px;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 30px;
}

.testimonial-author {
    display: inline-block;
    text-align: center;
    margin: 25px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Testimonials Slider */
.testimonials-slider .slick-slide {
    outline: none;
    text-align: center;
    margin: 0 auto;
}

.testimonial-card {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.testimonials-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.testimonial-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    margin: 0 10px;
}

.testimonial-arrow:hover {
    background: #ff9000;
    border-color: #ff9000;
    transform: translateY(-3px);
}

.testimonial-arrow:focus {
    outline: none;
}

/* Slick Dots Styling */
.testimonials-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin: 0 20px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.testimonials-slider .slick-dots li {
    margin: 0 5px;
}

.testimonials-slider .slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots .slick-active button {
    background: #ff9000;
    transform: scale(1.2);
}

/* Slick Slider Custom Arrows */
.slick-prev:before,
.slick-next:before {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .testimonials-slider {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .testimonial-content p {
        font-size: 1.05rem;
        padding: 0;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .testimonials-slider {
        padding: 0 10px;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .testimonial-rating {
        font-size: 13px;
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-section .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 35px;
    flex: 1 1 350px;
    max-width: 380px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9000, #ff6b00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin: 0 auto 20px;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.testimonial-rating i {
    margin: 0 1px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 144, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ff9000;
    font-size: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    background: #ff9000;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 30px;
    font-style: normal;
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.testimonial-author {
    display: inline-block;
    text-align: center;
    margin: 25px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    width: 100%;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px;
    display: block;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    display: block;
}

.testimonials-cta {
    margin-top: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonials-cta .btn-primary {
    background: linear-gradient(135deg, #ff9000, #ff6b00);
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.testimonials-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.4);
    background: linear-gradient(135deg, #ff9a1a, #ff7a1a);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .testimonial-card {
        flex: 1 1 calc(50% - 30px);
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 80px 0 60px;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        flex: 1 1 100%;
        padding: 30px 25px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}
}