/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

/*MAIN STLYE APPLIED TO THE WHOLE PAGE*/
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    text-decoration: none;
}

/* --- Home Page Colorful Text --- */
.home-content h1 span {
    background: linear-gradient(135deg, #6c63ff, #3fa39a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-content .multiple-text {
    color: #5048e0; /* A darker, more vibrant purple */
}

/*VARIABLES - Set up our own color variables to reference them later*/
:root {
    --bg-color: #f0f0f0;
    --second-bg-color: #ffffff;
    --text-color: #333;
    --main-color: #6a8caf;
    --main-shadow-color: rgba(0, 0, 0, 0.2);
    --main-trans-color: rgba(255, 255, 255, 0.7);
}

/*Set overall fontsize and overflow*/
html {
    font-size: 62.57%;
    overflow-x: hidden;
}

/*Set position and height*/
html,
body {
    position: relative;
    height: 100%;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/*SET THE SECTION SIZE and exclude the footer*/
section:not(.footer) {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/**********************************************
        T E X T     S T Y L I N G
**********************************************/
/*Used for different color text*/
span {
    color: var(--main-color);
}

h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 25px;
    font-weight: 650px;
}

h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

h4 {
    font-size: 4rem;
}

p {
    font-size: 1.6rem;
}

ul {
    list-style: none;
    font-weight: 400;
}

/********************************************
      B A C K G R O U N D     I M G 
*********************************************/
.background-image {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    display: block;
    background-image: url("../images/coms1.jpg");
    filter: blur(5px);
    opacity: 35%;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
}


.skills-box strong {
    font-weight: bold;
}

.skills-box ul ul {
    padding-left: 20px;
    /* This will indent the nested lists */
}

.skills-box li {
    padding: 5px 0;
    /* This adds some space between list items */
}

/* .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    background-color: #f9f9f9; /* or any background color you prefer */
/* } */

.contact {
    padding: 4rem; /* Adjust the padding as per design */
    background: var(--second-bg-color); /* Set a background color */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.contact-info, .contact-form {
    flex-basis: 48%; /* Adjust the width for responsiveness */
    padding: 2rem;
}

.contact-info h3, .contact-form h3 {
    margin-bottom: 1rem;
    color: var(--main-color);
}

.contact-info p, .contact-details p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px; /* For spacing between icon and text */
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ccc; /* Border color */
    border-radius: 4px; /* Rounded borders */
}

.contact-form textarea {
    height: 120px; /* Set a fixed height */
    resize: vertical; /* Allows only vertical resizing */
}

.contact-form button {
    padding: 1rem 2rem;
    background: var(--main-color);
    color: var(--second-bg-color);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: darken(var(--main-color), 10%); /* Slightly darken the button color on hover */
}

/* Add to your mainStyle.css file */
.swiper-button-prev, .swiper-button-next {
    background: #000; /* Arrow background color */
    width: 50px; /* Arrow width */
    height: 50px; /* Arrow height */
    border-radius: 25px; /* Make it round */
    position: absolute;
    top: 50%; /* Align vertically */
    transform: translateY(-50%); /* Center vertically */
    color: #fff; /* Arrow color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-button-prev {
    left: 10px; /* Space from left */
}

.swiper-button-next {
    right: 10px; /* Space from right */
}

.swiper-button-prev::after, .swiper-button-next::after {
    font-family: "Swiper icons"; /* This is for default Swiper icons */
    font-size: 25px; /* Icon size */
}
