/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0b0d13;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #c1c1c1;
    font-size: 16px;
}

a {
    color: #1da1f2;
    text-decoration: none;
}

a:hover {
    color: #17a2b8;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #15181e;
}

header img.logo {
    width: 150px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

nav ul li a:hover {
    color: #00aaff;
}

/* Hero Section */
#hero {
    background: url('cover 3.jfif') no-repeat center center/cover;
    padding: 150px 0;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-attachment: fixed;
}

#hero h1 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

#hero .cta {
    display: inline-block;
    padding: 10px 30px;
    background-color: #1da1f2;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 16px;
}

#hero .cta:hover {
    background-color: #00aaff;
    color: #000000;
}

/* News Section */
#news {
    padding: 100px 0;
    background-color: #0b0d13;
    text-align: center;
}

#news h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.news-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.news-item {
    background-color: #15181e;
    padding: 20px;
    margin: 10px;
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-item h3 {
    font-size: 24px;
    color: #ffffff;
}

.news-item p {
    font-size: 16px;
    color: #c1c1c1;
}

/* Services Section */
#services {
    padding: 100px 0;
    background-color: #15181e;
}

#services h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    width: 30%;
    padding: 20px;
    background-color: #1f232b;
    margin: 10px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-item h3 {
    font-size: 24px;
    color: #ffffff;
}

.service-item p {
    font-size: 16px;
    color: #c1c1c1;
}

/* Market Insights Section */
#market {
    padding: 100px 0;
    background-color: #0b0d13;
    text-align: center;
}

#market h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.market-insights-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.market-insight {
    background-color: #15181e;
    padding: 20px;
    margin: 10px;
    width: 30%;
    border-radius: 10px;
}

.market-insight h3 {
    font-size: 24px;
    color: #ffffff;
}

.market-insight p {
    font-size: 16px;
    color: #c1c1c1;
}

/* Newsletter Section */
#newsletter {
    padding: 100px 0;
    background-color: #15181e;
    text-align: center;
}

#newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

#newsletter p {
    font-size: 18px;
    color: #c1c1c1;
    margin-bottom: 20px;
}

#newsletter form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

#newsletter form button {
    padding: 10px 20px;
    background-color: #1da1f2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

#newsletter form button:hover {
    background-color: #00aaff;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: #0b0d13;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

#contact p {
    font-size: 18px;
    color: #c1c1c1;
    margin-bottom: 40px;
}

#contact form input,
#contact form textarea {
    padding: 10px;
    width: 50%;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

#contact form button {
    padding: 10px 30px;
    background-color: #1da1f2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

#contact form button:hover {
    background-color: #00aaff;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: #15181e;
    color: #ffffff;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
}

.footer-column h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column ul li a {
    color: #c1c1c1;
    font-size: 16px;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #c1c1c1;
}




.sectors-section {
	background: url('cover 2.jfif') no-repeat center center/cover;
	background-size: 100x;
    padding: 100px 0;
	height: 600px;
	width: 100%;
    background-color: #f4f4f4
	text-align:  center;
    z-index: 1; /* Ensures it’s above other elements */
    opacity: 1; /* Makes sure the section is fully visible */
    transition: opacity 0.5s ease-in-out;
	 padding: 100px 0;
    text-align: center;
	font-size: 24px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    opacity: 1; /* Ensure visibility */
    transition: opacity 0.5s ease-in-out;
}

.sector-card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 1; /* Make sure each card is visible */
}

.sector-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	opacity: 1;
}

.sector-image img {
    width: 100%;
	height: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
	opacity: 1;
}

.sector-card:hover .sector-image img {
    transform: scale(1.05);
	opacity: 1;
	height: 70%;
}

.sector-content h3 {
    font-size: 24px;
    color: #002244;
    margin-bottom: 10px;
    animation: fadeInRight 1.5s ease-in-out forwards;
    opacity: 0;
}

.sector-content p {
    color: #555;
    margin-bottom: 20px;
    animation: fadeInRight 2s ease-in-out forwards;
    opacity: 0;
}

.sector-content h3,
.sector-content p {
    opacity: 1; /* Ensure text is visible */
    transition: opacity 0.5s ease-in-out;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.carousel-container {
    perspective: 1200px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
	height: 250px;
}

.carousel-item {
    width: 300px;
    height: 250px;
    background-color: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 1s ease;
    position: absolute;
    transform-origin: center;
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
	height: 70%;
    border-radius: 12px 12px 0 0;
}

.carousel-item h3 {
    text-align: center;
    font-size: 18px;
    padding: 10px;
    color: #002244;
}

/* Rotation of Carousel Items */
.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(400px); }
.carousel-item:nth-child(2) { transform: rotateY(51.42deg) translateZ(400px); }
.carousel-item:nth-child(3) { transform: rotateY(102.84deg) translateZ(400px); }
.carousel-item:nth-child(4) { transform: rotateY(154.26deg) translateZ(400px); }
.carousel-item:nth-child(5) { transform: rotateY(205.68deg) translateZ(400px); }
.carousel-item:nth-child(6) { transform: rotateY(257.10deg) translateZ(400px); }
.carousel-item:nth-child(7) { transform: rotateY(308.52deg) translateZ(400px); }

/* Continuous Rotation */
.carousel {
    animation: rotate 60s infinite linear;
}

.carousel {
    animation-play-state: running; /* Default state is running */
}

@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}


