@font-face {
  font-family: 'gothamThin';
  src: url('fonts/GOTHAM-THIN.TTF') format('truetype');
  /*src:url('fonts/Montserrat-Regular.eot'); /* IE9 Compat Modes */
  /*src:url('fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
      /*url('fonts/Montserrat-Regular.woff2') format('woff2'),*/ /* Super Modern Browsers */
      /*url('fonts/Montserrat-Regular.woff') format('woff'), *//* Pretty Modern Browsers */
     /* url('fonts/Montserrat-Regular.ttf') format('truetype'), *//* Safari, Android, iOS */
      /*url('fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');*/  /* Legacy iOS*/
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'gothamMedium';
  src: url('fonts/GOTHAM-MEDIUM.TTF') format('truetype');
  /*src:url('fonts/Montserrat-Regular.eot'); /* IE9 Compat Modes */
  /*src:url('fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
      /*url('fonts/Montserrat-Regular.woff2') format('woff2'),*/ /* Super Modern Browsers */
      /*url('fonts/Montserrat-Regular.woff') format('woff'), *//* Pretty Modern Browsers */
     /* url('fonts/Montserrat-Regular.ttf') format('truetype'), *//* Safari, Android, iOS */
      /*url('fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');*/  /* Legacy iOS*/
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Futura";
  src:
    local("Futura"),
    url("fonts/futura-light.ttf") format("truetype");
      font-style: normal;
  font-weight: normal;
}
 
@font-face {
  font-family: "FuturaMedium";
  src:
    local("FuturaMedium"),
    url("fonts/futura-medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

:root{

	--color-main: #172577;
	--second-color:#e43f00;
	--color-white: #fff;
	--color-gray: #4f4f4f;
	--color-dark:#000000;


}




*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{

	font-family: 'FuturaMedium','gothamMedium',  sans-serif;
	background: #0a0a0a;
	color: var(--color-white);
	overflow-x: hidden;

}

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

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--color-white);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 5px 0;
	transition: all 0.3s ease;
}

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

.logo {
	/*font-size: 24px;
	font-weight: 800;*/
/*	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;*/
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-links a {
	color: var(--second-color);
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	text-transform: uppercase;
}

.nav-links a:hover {
	color: #ff6b6b;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #ff6b6b, #172577);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.color2{
	color: #ff6b6b !important;
}

.cta-button {
	background: linear-gradient(135deg, #e43f00, #172577);
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}




 /* Hero Section */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
	radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}



.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 120px 0;
}


.hero-text h1 {
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease;
}

.gradient-text {
	background: linear-gradient(115deg, #e43f00, #172577);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 1.2rem;
	color: #b0b0b0;
	margin-bottom: 30px;
	animation: fadeInUp 1s ease 0.2s both;
}

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


.secondary-button {
	background: transparent;
	color: #ffffff;
	padding: 12px 24px;
	border: 2px solid #333;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.secondary-button:hover {
	border-color: #e43f00;
	color: #e43f00;
}


.hero-visual {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-cards {
	position: absolute;
	width: 100%;
	height: 100%;
}

.card {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 20px;
	animation: float 6s ease-in-out infinite;
}

.card:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.card:nth-child(2) {
	top: 60%;
	right: 10%;
	animation-delay: 2s;
}

.card:nth-child(3) {
	bottom: 20%;
	left: 30%;
	animation-delay: 4s;
}

.card i{
	color: var(--second-color);
}

/* Services Section */
.services {
	padding: 100px 0;
	background: #111111;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 60px;
}

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

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(36, 38, 111, 0.3), transparent);
	transition: left 0.5s ease;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: rgba(36, 38, 111, 0.3);
	cursor: pointer;
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #ffffff;
}

.service-card p {
	color: #b0b0b0;
	line-height: 1.6;
}



/* Stats Section */
.stats {
	padding: 80px 0;
	background: linear-gradient(135deg, #e43f00, #172577);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item h3 {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 10px;
	color: #ffffff;
}

.stat-item p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
}





  /* Contact Form */
        .contact-section {
            background: #111111;
            padding: 100px 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

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

        .contact-info p {
            color: #b0b0b0;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #ffffff;
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e43f00, #172577);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .form-group {
            position: relative;
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
        	font-family: 'Futura','gothamMedium',  sans-serif;
            width: 100%;
            padding: 15px 20px;
            background:#E3E3E3;
            /*background: rgba(255, 255, 255, 0.1);*/
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: #4f4f4f;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
        	/*background: rgba(255, 255, 255, 0.1);*/
            outline: none;
            border-color: #e43f00;
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888;
        }

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

        .form-submit {
            width: 100%;
            background: linear-gradient(90deg, #e43f00, #172577);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        .form-submit:active {
            transform: translateY(0);
        }


 /* Newsletter Form */
        .newsletter {
            /*background: linear-gradient(95deg, #172577, #e43f00);*/
            background-color: #000;
            padding: 60px 0;
            text-align: center;
        }

        .newsletter h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-form button {
            background: #ffffff;
            color: #ff6b6b;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }





/* Footer */
footer {
	background: #050505;
	padding: 60px 0 30px;
	text-align: center;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #ffffff;
}

.footer-section p,
.footer-section a {
	color: #b0b0b0;
	text-decoration: none;
	margin-bottom: 10px;
	display: block;
}

.footer-section a:hover {
	color: #ff6b6b;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 30px;
	color: #666;
}





.up-a {
    bottom: 1rem;
    cursor: pointer;
    right: 1rem;
    background: var(--second-color);
    color: #fff;
    height: 40px;
    text-align: center;
    font-size: 30px;
    line-height: 35px;
    position: fixed;
    width: 40px;
    z-index: 99999;
    transition: all 800ms ease;
}

.up-a a {
    color: #fff;
}

.up-a span {
    font-size: 2rem;
}


/* Responsive */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.nav-links {
		display: none;
	}

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

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 15px;
	}

	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}


}


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

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}


@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}