/* General Styles */
:root {
   --primary-color: #FF8C00; /* Original Orange */
   --secondary-color: #004080; /* Original Dark Blue */
   --logo-orange: #feb700; /* Specific orange for logo 'o' */
   --logo-blue: #0c3374; /* Specific blue for rest of logo text */
   --text-color: #333;
   --light-bg: #f8f9fa;
   --dark-bg: #343a40;
   --white: #ffffff;
   --font-heading: 'Montserrat', sans-serif;
   --font-body: 'Poppins', sans-serif;
   --font-logo: 'Glacial Indifference', sans-serif; /* New logo font */
}
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
html {
   scroll-behavior: smooth;
}
body {
   font-family: var(--font-body);
   line-height: 1.6;
   color: var(--text-color);
   background-color: var(--white);
}
.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
   font-family: var(--font-heading);
   color: var(--secondary-color);
   margin-bottom: 15px;
}
h1 { font-size: 2.8em; line-height: 1.2; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }
p {
   margin-bottom: 1em;
}
a {
   text-decoration: none;
   color: var(--primary-color);
}
a:hover {
   color: var(--secondary-color);
}
.btn {
   display: inline-block;
   padding: 12px 25px;
   border-radius: 5px;
   font-family: var(--font-heading);
   font-weight: 600;
   transition: background-color 0.3s ease, color 0.3s ease;
   border: none;
   cursor: pointer;
   text-align: center;
}
.btn-primary {
   background-color: var(--primary-color);
   color: var(--white);
}
.btn-primary:hover {
   background-color: #e67e00; /* Slightly darker orange */
}
.btn-secondary {
   background-color: var(--secondary-color);
   color: var(--white);
}
.btn-secondary:hover {
   background-color: #002c58; /* Slightly darker blue */
}
.btn-light {
   background-color: var(--white);
   color: var(--primary-color);
   border: 1px solid var(--white);
}
.btn-light:hover {
   background-color: rgba(255, 255, 255, 0.9);
   color: var(--secondary-color);
}
.btn-lg {
   padding: 15px 30px;
   font-size: 1.1em;
}
.section-padding {
   padding: 80px 0;
}
.section-header {
   text-align: center;
   margin-bottom: 60px;
}
.section-header h2 {
   color: var(--secondary-color);
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 2.5em;
}
.section-header h3 {
   color: var(--primary-color);
   font-weight: 600;
   font-size: 1.5em;
}
/* Navbar */
.navbar {
   background-color: var(--white);
   padding: 15px 0;
   box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   position: sticky;
   top: 0;
   z-index: 1000;
}
.navbar .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
/* Updated Logo Styling */

.navbar .logo {
   display: flex;
   flex-direction: column;
   align-items: flex-start; /* Aligns all children (logo + slogan) to the left */
}

.navbar .logo .logo-gokollective {
   font-family: var(--font-logo);
   font-size: 1.8em; /* Adjust size as needed */
   font-weight: 300; /* Glacial Indifference has regular and bold, so 700 for bolder look */
   line-height: 1; /* Helps with vertical alignment */
   margin-left:-0.15em;
}

.navbar .logo .logo-gokollective-slogan {
   font-family: var(--font-logo);
   font-size: 0.20em; /* Adjust size as needed */
   margin-top: 0.5em;
   margin-left: 0.0em;
   font-weight: 350; /* Glacial Indifference has regular and bold, so 700 for bolder look */
   line-height: 1.15; /* Helps with vertical alignment */
   letter-spacing:0.2em;
   text-align: right;
}


.nav-links {
   list-style: none;
   display: flex;
   gap: 30px;
   align-items: center;
}
.nav-links li a {
   color: var(--secondary-color);
   font-weight: 600;
   font-family: var(--font-heading);
   transition: color 0.3s ease;
}
.nav-links li a:hover {
   color: var(--primary-color);
}
.nav-links li .btn {
   padding: 8px 20px;
}
/* Burger Menu for Mobile */
.burger {
   display: none;
   cursor: pointer;
   flex-direction: column;
   justify-content: space-around;
   width: 30px;
   height: 25px;
}
.burger div {
   width: 30px;
   height: 3px;
   background-color: var(--secondary-color);
   transition: all 0.3s ease;
}
/* Hero Section */


.hero {
   background: 
  linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)
  ),
  linear-gradient(
    135deg,
    #081f4d 0%,
    #0c3374 30%,
    #1459b0 60%,
    #feb700 100%
  );
   color: var(--white);
   text-align: center;
   padding: 120px 0;
   display: flex;
   align-items: center;
   min-height: 600px;
}
.hero h1 {
   color: var(--white);
   font-size: 3.5em;
   margin-bottom: 20px;
}


.hero p {
   font-size: 1.4em;
   margin-bottom: 40px;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}
.hero .hero-btn {
   margin: 0 10px;
}
/* About Section */
#about p {
   font-size: 1.1em;
   max-width: 900px;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
}
/* NEW: About Goals (Vision/Mission) Grid */
.about-goals-grid {
   display: flex;
   gap: 30px;
   max-width: 900px;
   margin: 40px auto;
   text-align: left;
}
.about-goal-item {
   flex: 1;
   padding: 20px;
   border-left: 3px solid var(--primary-color);
   background-color: var(--light-bg);
   border-radius: 5px;
   text-align: center; /* Center-aligns inline content */
}
.about-goal-item h4 {
   color: var(--secondary-color);
   margin-bottom: 10px;
}
/* NEW: Core Values Section */
.core-values-section {
   max-width: 900px;
   margin: 40px auto 0 auto;
   text-align: center;
}
.core-values-section h4 {
   color: var(--primary-color);
   font-size: 1.6em;
   margin-bottom: 20px;
}
.core-values-list {
   list-style: none;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px 40px;
}
.core-values-list li {
   font-size: 1.1em;
   color: var(--secondary-color);
   font-weight: 600;
   display: flex;
   align-items: center;
}
.core-values-list li i {
   color: var(--primary-color);
   font-size: 1.2em;
   margin-right: 8px;
}
/* Services Section */
.bg-light {
   background-color: var(--light-bg);
}
.service-intro {
   font-size: 1.1em;
   max-width: 900px;
   margin: 0 auto 40px auto;
   text-align: center;
   color: #555;
}
.services-grid, .advantages-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   margin-top: 40px;
}
/* Adjust services grid to handle 5 items better, making them slightly smaller if needed */
.platform-features {
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.services-grid, .advantages-grid {
   margin-top: 0; /* Reset for sections using it */
}

.service-item, .advantage-item {
   background-color: var(--white);
   padding: 30px;
   border-radius: 8px;
   text-align: center;
   box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 100%; /* Ensures all items in the grid are the same height */
}
.service-item:hover, .advantage-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.service-icon, .advantage-icon {
   font-size: 3em;
   color: var(--primary-color);
   margin-bottom: 20px;
}
.service-item h4, .advantage-item h4 {
   color: var(--secondary-color);
   font-weight: 700;
   margin-bottom: 10px;
}
/* Team Section */
.team-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}
.team-member {
   background-color: var(--white);
   padding: 25px;
   border-radius: 8px;
   text-align: center;
   box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.member-photo {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   overflow: hidden;
   margin: 0 auto 20px auto;
   border: 4px solid var(--primary-color); /* Photo frame */
   display: flex;
   align-items: center;
   justify-content: center;
}
.member-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.team-member h4 {
   color: var(--secondary-color);
   margin-bottom: 5px;
   font-weight: 700;
}
.team-member p {
   color: #666;
   font-style: italic;
   margin-bottom: 15px;
   font-size: 0.95em;
}
.member-responsibilities {
   list-style: none;
   text-align: left;
   font-size: 0.9em;
   color: #555;
   margin-top: 15px;
}
.member-responsibilities li {
   margin-bottom: 8px;
   position: relative;
   padding-left: 20px;
}
.member-responsibilities li::before {
   content: '\f00c'; /* Font Awesome check icon */
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   color: var(--primary-color);
   position: absolute;
   left: 0;
   top: 0;
}

/* Call to Action Section */
.cta-section {
   background: linear-gradient(90deg, #1a237e 0%, #ff9800 100%);
   color: var(--white);
   text-align: center;
}

.cta-section h2 {
   color: var(--white);
   font-size: 2.8em;
   margin-bottom: 20px;
}
.cta-section p {
   font-size: 1.2em;
   margin-bottom: 40px;
}
/* Contact Section */
.contact-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 50px;
   align-items: start;
}
.contact-info p {
   font-size: 1.1em;
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--secondary-color);
}
.contact-info p i {
   color: var(--primary-color);
   font-size: 1.3em;
}
.contact-info a {
   color: var(--secondary-color);
}
.contact-info a:hover {
   color: var(--primary-color);
}
.social-icons {
   margin-top: 30px;
   display: flex;
   gap: 15px;
}
.social-icons a {
   color: var(--secondary-color);
   font-size: 1.8em;
   transition: color 0.3s ease;
}
.social-icons a:hover {
   color: var(--primary-color);
}
.form-group {
   margin-bottom: 20px;
}
.form-group label {
   display: block;
   margin-bottom: 8px;
   font-weight: 600;
   color: var(--secondary-color);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid #ddd;
   border-radius: 5px;
   font-family: var(--font-body);
   font-size: 1em;
   transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
   border-color: var(--primary-color);
   outline: none;
}
.contact-form .btn {
   width: auto;
   padding: 12px 30px;
}
/* Footer */
footer {
   background-color: var(--dark-bg);
   color: var(--white);
   padding: 30px 0;
   text-align: center;
   font-size: 0.9em;
}
footer .container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}
footer p {
   margin: 0;
}
.footer-links a {
   color: var(--white);
   margin-left: 20px;
}
.footer-links a:hover {
   color: var(--primary-color);
}
/* Responsive Design */
@media (max-width: 992px) {
   .hero h1 {
       font-size: 2.8em;
   }
   .hero p {
       font-size: 1.2em;
   }
   .section-header h2 {
       font-size: 2em;
   }
   .section-header h3 {
       font-size: 1.3em;
   }
   .navbar .logo .logo-gokollective {
       font-size: 2em; /* Adjust for smaller screens */
   }
   .about-goals-grid {
       flex-direction: column;
   }
}
@media (max-width: 768px) {
   .navbar .container {
       flex-wrap: wrap;
       justify-content: center;
   }
   .navbar .logo {
       margin-bottom: 15px;
   }
   .navbar .logo .logo-gokollective {
       font-size: 1.8em; /* Further adjust for mobile */
   }
   .nav-links {
       display: none;
       flex-direction: column;
       width: 100%;
       text-align: center;
       gap: 15px;
       margin-top: 15px;
   }
   .nav-links.nav-active {
       display: flex;
   }
   .burger {
       display: flex;
       position: absolute;
       right: 20px;
       top: 25px;
   }
   .hero {
       padding: 80px 0;
       min-height: 500px;
   }
   .hero h1 {
       font-size: 2.5em;
   }
   .hero p {
       font-size: 1em;
   }
   .hero .hero-btn {
       margin-bottom: 15px;
   }
   .section-padding {
       padding: 60px 0;
   }
   .services-grid, .advantages-grid, .team-grid, .contact-grid {
       grid-template-columns: 1fr;
   }
   .core-values-list {
       flex-direction: column;
       align-items: flex-start;
       padding-left: 20px;
   }
   .footer-links {
       margin-top: 20px;
       display: flex;
       flex-direction: column;
       gap: 10px;
       align-items: center;
       width: 100%;
   }
   .footer-links a {
       margin-left: 0;
   }
}
/* Burger Animation */
.toggle .line1 {
   transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
   opacity: 0;
}
.toggle .line3 {
   transform: rotate(45deg) translate(-5px, -6px);
}