/* Modern Company Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
.NavBar_NavBar__1oRbQ {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.NavBar_NavBar__1oRbQ.scrolled {
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.NavBar_Nav__2A4nD {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.NavBar_navItems__1fN4s {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavBar_logo__2BH6I {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.NavBar_logo__2BH6I:hover {
    transform: scale(1.05);
}

.NavBar_NavLinks__1sTwA {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.NavBar_NavLinks__1sTwA a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.NavBar_NavLinks__1sTwA a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.NavBar_NavLinks__1sTwA a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #60a5fa;
    transition: width 0.3s ease;
}

.NavBar_NavLinks__1sTwA a:hover::after {
    width: 100%;
}

.NavBar_hamburger__2tnC7 {
    display: none;
    cursor: pointer;
}

.NavBar_svg__3rxMY {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Email Contact */
.Email_email__4g04X {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    text-decoration: none;
    font-weight: 500;
    z-index: 999;
    transition: all 0.3s ease;
    background-color: rgba(31, 41, 55, 0.8);
    padding: 1rem 0.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.Email_email__4g04X:hover {
    color: #60a5fa;
    transform: translateY(-50%) scale(1.05);
}

/* Carousel Styles */
.carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    z-index: 1;
}

.carousel-item:nth-child(1) {
    background-image: url('../images/slide1.jpg');
}

.carousel-item:nth-child(2) {
    background-image: url('../images/slide-2.jpg');
}

.carousel-item:nth-child(3) {
    background-image: url('../images/slide-3.jpg');
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
    z-index: 10;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background-color: #60a5fa;
    transform: scale(1.2);
}

/* Main Content Styles */
.Home_Main__45Ow7,
.Home_Main2__3-Bjk {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.Home_headingText__3AGxL {
    max-width: 800px;
    padding: 0 2rem;
}

.Home_homeName__BXa2s {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.Home_title__3DjR7 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #60a5fa;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.Home_title__3DjR7 p {
    margin: 0;
}

.Home_headingText__3AGxL > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Button Styles */
.Home_action__3B16m {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.Home_primaryBtn__30ChM {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.Home_primaryBtn__30ChM span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.Home_primaryBtn__30ChM:hover span {
    transform: translateY(-2px);
}

.Home_primaryBtn__30ChM::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.Home_primaryBtn__30ChM:hover::before {
    left: 100%;
}

.Home_white__Aw9X7 {
    background-color: white;
    color: #1f2937;
    border-color: white;
}

.Home_white__Aw9X7:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.Home_primaryBtn__30ChM:not(.Home_white__Aw9X7) {
    background-color: transparent;
    color: white;
    border-color: #60a5fa;
}

.Home_primaryBtn__30ChM:not(.Home_white__Aw9X7):hover {
    background-color: #60a5fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

/* Benefits Section Styles */
.Home_benifits_area__1zk_x {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 5rem 0;
    position: relative;
}

.Home_benifits_area__1zk_x::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(96,165,250,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.Home_benifits_item__1zQRY {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.Home_benifits_item__1zQRY::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.Home_benifits_item__1zQRY:hover::before {
    left: 100%;
}

.Home_benifits_item__1zQRY:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(96, 165, 250, 0.3);
}

.Home_feature_icon__17CDu img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.Home_benifits_item__1zQRY:hover .Home_feature_icon__17CDu img {
    transform: scale(1.1) rotate(5deg);
}

.Home_benifits_text__iYnyz h3 {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 1rem;
}

.Home_benifits_text__iYnyz p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Work Section Styles */
.Home_lets_work__1poZ8 {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 5rem 0;
}

.Home_icon_box__mGHqY {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.Home_icon_box__mGHqY::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Home_icon_box__mGHqY:hover::before {
    opacity: 1;
}

.Home_icon_box__mGHqY:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.Home_icon__3QFgh {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.Home_icon_box__mGHqY:hover .Home_icon__3QFgh {
    transform: scale(1.1) rotate(5deg);
}

.Home_icon_img__3pPU6 {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.icon-text h3 {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.icon-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Section Headings */
.Home_section_heading__3jriO h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Home_section_heading__3jriO p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .NavBar_NavLinks__1sTwA {
        display: none;
    }
    
    .NavBar_hamburger__2tnC7 {
        display: block;
    }
    
    .Email_email__4g04X {
        display: none;
    }
    
    .Home_homeName__BXa2s {
        font-size: 2.5rem;
    }
    
    .Home_title__3DjR7 {
        font-size: 1.2rem;
    }
    
    .Home_headingText__3AGxL > p {
        font-size: 1rem;
    }
    
    .Home_action__3B16m {
        flex-direction: column;
        align-items: center;
    }
    
    .Home_primaryBtn__30ChM {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
    
    .Home_section_heading__3jriO h2 {
        font-size: 2rem;
    }
    
    .Home_benifits_item__1zQRY {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .Home_homeName__BXa2s {
        font-size: 2rem;
    }
    
    .Home_title__3DjR7 {
        font-size: 1rem;
    }
    
    .Home_headingText__3AGxL {
        padding: 0 1rem;
    }
    
    .NavBar_Nav__2A4nD {
        padding: 0 1rem;
    }
    
    .Home_section_heading__3jriO h2 {
        font-size: 1.5rem;
    }
}

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

/* Loading animation */
.carousel-item.active {
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Additional utility classes */
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform 0.3s ease;
}

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

/* About Us Section Styles */
.About_aboutArea__1I9n8 {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 5rem 0;
    position: relative;
}

.About_sectionTitle__1mOsr h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.About_mb50__3-EZx p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.About_primaryBtn__3wPHL {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.About_primaryBtn__3wPHL span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.About_primaryBtn__3wPHL:hover span {
    transform: translateY(-2px);
}

.About_white__3i0mk {
    background-color: white;
    color: #1f2937;
    border-color: white;
}

.About_white__3i0mk:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Services Section Styles */
.bg-gray {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.Services_section_heading__Webi0 {
    margin-bottom: 4rem;
}

.Services_section_heading__Webi0 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Services_section_heading__Webi0 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.Services_card__3_VB- {
    margin-bottom: 2rem;
}

.Services_cardDetails__2DGc6 {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.Services_cardDetails__2DGc6::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.Services_cardDetails__2DGc6:hover::before {
    left: 100%;
}

.Services_cardDetails__2DGc6:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(96, 165, 250, 0.3);
}

.Services_img__3Qp35 {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.Services_cardDetails__2DGc6:hover .Services_img__3Qp35 {
    transform: scale(1.1) rotate(5deg);
}

.Services_cardDetails__2DGc6 h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.Services_primaryBtn__3FCFh {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #60a5fa;
    background-color: transparent;
    color: #60a5fa;
    cursor: pointer;
}

.Services_primaryBtn__3FCFh span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.Services_primaryBtn__3FCFh:hover {
    background-color: #60a5fa;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.Services_white__1_TdW {
    border-color: #60a5fa;
    color: #60a5fa;
}

.Services_white__1_TdW:hover {
    background-color: #60a5fa;
    color: white;
}

/* Contact Section Styles */
.Contact_contactArea__2Qj8B {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 5rem 0;
    position: relative;
}

.Contact_contact_box__K0HJA {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.Contact_contact_box__K0HJA:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.Contact_contact_box__K0HJA h3 {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.Contact_contact_box__K0HJA ul li {
    margin-bottom: 1rem;
}

.Contact_contact_box__K0HJA ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.Contact_contact_box__K0HJA ul li a:hover {
    color: #60a5fa;
}

.Footer_social_icon__2Obff {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.Contact_contact_box__K0HJA ul li a:hover .Footer_social_icon__2Obff {
    transform: scale(1.1);
}

.Footer_social_icon__2Obff i {
    color: white;
    font-size: 1rem;
}

/* Contact Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25);
    color: white;
}

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

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

.btn-lg {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Section Spacing */
.About_sectionGap__2xvOe {
    margin: 0;
}

.Contact_sectionGap__2xvOe {
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .About_sectionTitle__1mOsr h2 {
        font-size: 2rem;
    }
    
    .Services_section_heading__Webi0 h2 {
        font-size: 2rem;
    }
    
    .Services_cardDetails__2DGc6 {
        padding: 1.5rem;
    }
    
    .Contact_contact_box__K0HJA {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .About_sectionTitle__1mOsr h2 {
        font-size: 1.5rem;
    }
    
    .Services_section_heading__Webi0 h2 {
        font-size: 1.5rem;
    }
    
    .Services_cardDetails__2DGc6 h1 {
        font-size: 1.2rem;
    }
} 