

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 99, 0, 0.1), rgba(0, 74, 85, 0.1));
    color: #f56300;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 99, 0, 0.2);
}

.section-tag-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: #004a55;
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.section-divider span {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f56300, #004a55);
    border-radius: 2px;
}

.section-divider i {
    color: #f56300;
    font-size: 1.2rem;
}

/* Navbar */
.navbar-custom {
    background: transparent;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar-scrolled .nav-link {
    color: #004a55 !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: #f56300 !important;
}

.navbar-custom .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 50%;
    width: 0;
    height: 2px;
    background: #f56300;
    transition: all 0.3s ease;
    transform: translateX(50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}

.btn-cta {
    background: linear-gradient(135deg, #f56300, #e55a00);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #004a55, #002d33);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 85, 0.3);
}

.logo-scroll {
    display: none;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.navbar-custom.navbar-scrolled .navbar-toggler {
    border-color: #004a55 !important;
    color: #004a55;
}

/* Hero Section */
#heroCarousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-slide:first-child {
    background-image: url('img/bg\ slide.jpg');
}

.hero-slide-2 {
    background-image: url('img/bg\ slide.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 85, 0.9) 0%, rgba(0, 45, 51, 0.8) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 99, 0, 0.2);
    color: #f56300;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 99, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
    line-height: 1.2;
}

.hero-text {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(245, 99, 0, 0.3);
    border-radius: 10px;
    z-index: -1;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#heroCarousel .carousel-control-prev { right: 30px; left: auto; }
#heroCarousel .carousel-control-next { left: 30px; right: auto; }

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background-color: rgba(245, 99, 0, 0.8);
    opacity: 1;
}

#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 8px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #f56300;
    border-color: #f56300;
    width: 40px;
    border-radius: 6px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #004a55, #002d33);
    padding: 60px 0;
    position: relative;
    margin-top: -5px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 99, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #f56300;
}

.stat-card:hover .stat-icon {
    background: #f56300;
    transform: scale(1.1) rotate(10deg);
}

.stat-card:hover .stat-icon i {
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: #f56300;
    display: inline;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Buttons */
.prycolor {
    color: #004a55;
}

.btncolor {
    background: linear-gradient(135deg, #f56300 0%, #e55a00 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 99, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btncolor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btncolor:hover::before {
    width: 300px;
    height: 300px;
}

.btncolor:hover {
    background: linear-gradient(135deg, #004a55 0%, #002d33 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 74, 85, 0.4);
}

.btn-feature {
    background: linear-gradient(135deg, #f56300, #e55a00);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-feature:hover {
    background: #ffffff;
    color: #004a55;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #FFFBF5 0%, #ffffff 50%, #FFFBF5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.value-card {
    background: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 74, 85, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 74, 85, 0.08);
    position: relative;
    overflow: hidden;
}

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

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

.value-card:hover {
    box-shadow: 0 20px 60px rgba(0, 74, 85, 0.15);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #004a55 0%, #002d33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.value-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(245, 99, 0, 0.3);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.value-card:hover .value-icon-wrapper {
    background: linear-gradient(135deg, #f56300, #e55a00);
    transform: scale(1.1);
}

.value-icon {
    font-size: 2.2rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-title {
    color: #004a55;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: #f56300;
}

.value-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Features/CSR Section */
.csr-section-bootstrap {
    position: relative;
    min-height: 700px;
    background-image: url('img/business1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.csr-section-bootstrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 85, 0.92) 0%, rgba(0, 45, 51, 0.88) 100%);
    z-index: 0;
}

.csr-section-bootstrap .background-overlay {
    display: none;
}

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

.section-title-bootstrap {
    border-bottom: 3px solid #f56300;
    display: inline-block;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
}

.initiatives-list-bootstrap li {
    margin-bottom: 25px;
    padding-right: 50px;
    position: relative;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.initiatives-list-bootstrap li:hover {
    transform: translateX(-8px);
}

.feature-number {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f56300, #e55a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(245, 99, 0, 0.4);
    transition: all 0.3s ease;
}

.initiatives-list-bootstrap li:hover .feature-number {
    transform: translateY(-50%) scale(1.2) rotate(360deg);
}

/* Main/Vision Section */
.main-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.company-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f56300, #004a55);
    border-radius: 2px;
}

.company-desc {
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
}

.section-block {
    margin-top: 35px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    border-right: 5px solid #f56300;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-block:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 40px rgba(0, 74, 85, 0.1);
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    font-size: 1rem;
}

.section-block p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Image Cards */
.card-large,
.card-small {
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-large img,
.card-small img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-large:hover img,
.card-small:hover img {
    transform: scale(1.1);
}

.card-large:hover,
.card-small:hover {
    box-shadow: 0 25px 60px rgba(0, 74, 85, 0.2);
    transform: translateY(-8px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.service-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 74, 85, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 74, 85, 0.1), rgba(245, 99, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-icon-wrap i {
    font-size: 2rem;
    color: #004a55;
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(245, 99, 0, 0.2);
    background: linear-gradient(135deg, #f56300, #e55a00);
    border-color: #f56300;
}

.service-item:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.service-item:hover .service-icon-wrap i {
    color: #ffffff;
}

.service-item h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #004a55;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.service-item:hover h5,
.service-item:hover p {
    color: #ffffff;
}

#servicesCarousel .carousel-indicators button {
    background-color: #ccc;
    opacity: 0.7;
    width: 12px; 
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#servicesCarousel .carousel-indicators button.active {
    background-color: #f56300;
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

#servicesCarousel .carousel-indicators {
    margin-top: 30px; 
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev { left: -60px; }
.carousel-control-next { right: -60px; }

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

@media (max-width: 767.98px) {
    .carousel-item .row .col-12:nth-child(n+3) {
        display: none !important; 
    }
}

/* Goals Section */
.goals-section {
    position: relative;
    min-height: 700px;
    background-image: url('img/Goal.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.goals-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 85, 0.9), rgba(0, 45, 51, 0.85));
    z-index: 1;
}

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

.section-title-goals {
    font-size: 2.8rem;
    border-bottom: 4px solid #f56300;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 800;
}

.goal-item {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goal-item:hover {
    transform: translateX(-12px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 99, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.goal-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f56300, #e55a00);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(245, 99, 0, 0.4);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.goal-item:hover .goal-number {
    transform: scale(1.15) rotate(360deg);
}

.goal-text {
    padding-right: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partner-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #004a55;
    opacity: 0.6;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 74, 85, 0.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #004a55, #002d33);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 99, 0, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f56300, #e55a00);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
}

.btn-cta-primary:hover {
    background: #ffffff;
    color: #004a55;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF5 0%, #ffffff 50%, #FFFBF5 100%);
}

.contact-card {
    background: #ffffff;
    padding: 45px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 74, 85, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 74, 85, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f56300, #004a55);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.contact-card:hover {
    box-shadow: 0 20px 60px rgba(0, 74, 85, 0.15);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #004a55 0%, #002d33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #f56300 0%, #e55a00 100%);
    transform: scale(1.1) rotateY(180deg);
}

.contact-card h4 {
    color: #004a55;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-link {
    color: #f56300;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #004a55;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #004a55 0%, #002d33 100%);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-left: 30px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: #f56300;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #f56300;
    padding-right: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #f56300;
    font-size: 1rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    color: #ffffff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    transform: translateY(-5px);
    border-color: #f56300;
    color: #ffffff;
}

.social-icons a:nth-child(1):hover { background: #E1306C; }
.social-icons a:nth-child(2):hover { background: #1877f2; }
.social-icons a:nth-child(3):hover { background: #1DA1F2; }
.social-icons a:nth-child(4):hover { background: #0A66C2; }

.footer-bottom {
    padding: 25px 0;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004a55, #002d33);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9998;
    box-shadow: 0 8px 25px rgba(0, 74, 85, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f56300, #e55a00);
    color: #ffffff;
    transform: translateY(-5px);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.whatsapp-float i {
    font-size: 2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .section-title-main { font-size: 2.2rem; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero-slide { padding: 100px 0 50px; }
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-image-decoration { display: none; }
    
    .stats-section { padding: 40px 0; }
    .stat-number { font-size: 2.2rem; }
    
    .values-section, .services, .contact-section { padding: 60px 0; }
    
    .csr-section-bootstrap, .goals-section {
        background-attachment: scroll;
        min-height: auto;
        padding: 80px 0;
    }
    
    .footer-about { padding-left: 0; }
    
    .back-to-top, .whatsapp-float {
        left: 15px;
    }
    
    .back-to-top { bottom: 85px; }
    .whatsapp-float { width: 50px; height: 50px; }
    .whatsapp-float i { font-size: 1.6rem; }
    .whatsapp-tooltip { display: none; }
}

@media (max-width: 576px) {
    .section-title-main { font-size: 1.8rem; }
    .company-title { font-size: 1.6rem; }
    .stat-card { padding: 20px 10px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.9rem; }
    
    .floating-shapes { display: none; }
}
